Skip to content

Commit 89f21f1

Browse files
authored
Merge pull request #8 from pixeldrew/snyk-upgrade-9eb31b29a47952d7afbe48e508b14177
[Snyk] Upgrade apollo-server-express from 2.10.0 to 2.10.1
2 parents 66e77f9 + 60511f3 commit 89f21f1

File tree

4 files changed

+174
-67
lines changed

4 files changed

+174
-67
lines changed

.github/workflows/nodejs.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Node.js CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [13.x]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm run build --if-present
22+
- run: npm test
23+
env:
24+
CI: true
25+
- name: Upload coverage to Codecov
26+
uses: codecov/codecov-action@v1
27+
with:
28+
file: ./coverage/coverage-final.json
29+
name: codecov-umbrella
30+
fail_ci_if_error: true

.github/workflows/npmupdate.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
schedule:
3+
- cron: 0 0 * * 3
4+
name: Update
5+
jobs:
6+
package-update:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: set remote url
11+
run: git remote set-url --push origin https://$GITHUB_ACTOR:${{ secrets.githubAccessToken }}@github.com/$GITHUB_REPOSITORY
12+
- name: package-update
13+
uses: taichi/actions-package-update@master
14+
env:
15+
AUTHOR_EMAIL: drew@pixelburn.net
16+
AUTHOR_NAME: Drew Foehn
17+
EXECUTE: "true"
18+
GITHUB_TOKEN: ${{ secrets.githubAccessToken }}
19+
LOG_LEVEL: debug
20+
with:
21+
args: -u --packageFile package.json --loglevel verbose

package-lock.json

+122-66
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)