Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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