Skip to content

Auto-update dependencies. #2849

Auto-update dependencies.

Auto-update dependencies. #2849

Workflow file for this run

name: CI Tests
on:
- pull_request
- push
env:
CI: true
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache npm
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- run: npm install
- name: "Lint and Test"
run: ./scripts/test.sh