Skip to content

Commit

Permalink
ci: upgrade to actions/checkout@3 and actions/setup-node@3
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Oct 13, 2022
1 parent e357daf commit 596eb88
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,25 @@ permissions:
jobs:
test-node:
runs-on: ubuntu-latest
timeout-minutes: 10

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

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

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
env:
CI: true

0 comments on commit 596eb88

Please sign in to comment.