Skip to content

chore: update deprecated config #3

chore: update deprecated config

chore: update deprecated config #3

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4 # https://github.com/actions/checkout
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4 # https://github.com/actions/setup-node/
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test