Skip to content

Commit

Permalink
Merge pull request #298 from dbmdz/ci-node-16
Browse files Browse the repository at this point in the history
CI: Update to Node.js 16
  • Loading branch information
jbaiter authored Jun 4, 2024
2 parents 365001f + 8cf9d93 commit b95aef2
Show file tree
Hide file tree
Showing 6 changed files with 31,683 additions and 70 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
node-version: 16
- run: npm ci --legacy-peer-deps
- run: npm run build --if-present
- run: npm run test:coverage
- run: npm run lint
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
- run: npm ci
- run: npm test

Expand All @@ -27,7 +27,7 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm ci --legacy-peer-deps
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
4 changes: 4 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[build.environment]
NODE_VERSION = "16"

NPM_FLAGS = "--legacy-peer-deps"
Loading

0 comments on commit b95aef2

Please sign in to comment.