Skip to content

Commit

Permalink
Merge pull request #57 from dabapps/axios-upgrade
Browse files Browse the repository at this point in the history
Axios upgrade (and other vulnerability fixes)
  • Loading branch information
timstimpson authored Jul 12, 2023
2 parents 98995e6 + fd3b222 commit 0a63272
Show file tree
Hide file tree
Showing 5 changed files with 6,472 additions and 1,238 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run dist
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.13.0
16.10.0
Loading

0 comments on commit 0a63272

Please sign in to comment.