Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump gha node to v16 #9685

Merged
merged 1 commit into from May 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-assets.yml
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js v14
- name: Use Node.js v16
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: 16
cache: 'yarn'
- name: Build file
run: yarn && npm run build:all
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: 16
cache: 'yarn'
- run: yarn install
- run: npm run format
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: 16
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- name: Release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-lint.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: 16
cache: 'yarn'
- run: yarn
- name: Lint
Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: 16
cache: 'yarn'
- run: yarn
- name: Lint
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
options: --entrypoint redis-server
strategy:
matrix:
node-version: [ '14', '16' ]
node-version: [ 14, 16 ]
name: Jest on Node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '14', '16' ]
node-version: [ 14, 16 ]
chromium:
- name: bundled Chromium
dependency: ''
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '14', '16' ]
node-version: [ 14, 16 ]
name: Build docs on Node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '14', '16' ]
node-version: [ 14, 16 ]
name: Build radar and maintainer on Node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
Expand Down