Skip to content

Commit

Permalink
chore(ci): update Node versions used in CI test (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
fvsch authored Nov 6, 2023
1 parent 8fece54 commit f9ce73c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: CI

on:
- push
- pull_request
pull_request:
push:
branches: [main]

jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 12
- 10
node-version: [20, 18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit f9ce73c

Please sign in to comment.