Skip to content

Run tests

Run tests #1349

Workflow file for this run

name: Run tests
on:
pull_request:
push:
schedule:
- cron: '0 0 * * *' # every day at midnight
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
os:
- ubuntu-latest
- macos-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm/cache/files
key: dependencies-nodejs-${{ matrix.node-version }}-package-${{ hashFiles('package.json') }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
env:
CI: true
- name: Run tests
run: npm test
env:
CI: true