Skip to content

chore/upgrade node and github actions for node 18 #71

chore/upgrade node and github actions for node 18

chore/upgrade node and github actions for node 18 #71

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-20.04
- windows-latest
node: [18, 20]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm test