Skip to content

Commit

Permalink
chore: use both node 14 and 16 for ci (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito authored Mar 10, 2022
1 parent adf268f commit 0a85d59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16.14.0
node-version: ${{ matrix.node }}

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit 0a85d59

Please sign in to comment.