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 Apr 6, 2023
1 parent 9a00cea commit 1588649
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ on:
schedule:
- cron: '0 0 * * 1'

permissions:
contents: read

jobs:
test-node:
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
matrix:
Expand All @@ -28,12 +32,16 @@ jobs:
- 6379:6379

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

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

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test

0 comments on commit 1588649

Please sign in to comment.