Skip to content

Commit

Permalink
fix: only run on Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherry committed Oct 14, 2022
1 parent 529a437 commit 04528b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:

strategy:
matrix:
node: [12, 14]
node: [16]

steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

Expand Down

0 comments on commit 04528b1

Please sign in to comment.