Skip to content

Commit

Permalink
Run CI on Node 18 and update actions (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
delucis authored Nov 13, 2023
1 parent 8baeeae commit d4c582b
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

- name: Cache node_modules
uses: actions/cache@v2
with:
path: ~/.npm
key: node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: node-${{ matrix.node }}-
node-version: ${{ matrix.node }}
cache: npm

- name: Install Dependencies
run: npm ci
Expand Down

0 comments on commit d4c582b

Please sign in to comment.