Skip to content

Commit

Permalink
ci: upgrade to node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchief committed Mar 6, 2022
1 parent 2b2f6ed commit b9c4501
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
- name: Setup Node JS
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
cache: yarn

- run: yarn install --ignore-engines
- run: yarn lint:nofix
- run: yarn test
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Setup Node JS
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
cache: yarn

- name: Build Docs 📚
run: |
# un-ignore bundle.js
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Node JS
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: 16.x
cache: yarn
- run: yarn install --ignore-engines
- run: yarn lint:nofix
- run: yarn test
Expand Down

0 comments on commit b9c4501

Please sign in to comment.