Skip to content

Bump actions/setup-node from 4 to 5 #163

Bump actions/setup-node from 4 to 5

Bump actions/setup-node from 4 to 5 #163

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
#- uses: actions/cache@v2
#with:
#path: ~/.npm
#key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
#restore-keys: |
#${{ runner.os }}-node-
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test