Skip to content

0.0.161

0.0.161 #264

Workflow file for this run

name: Run tests
on:
push:
tags:
- '*'
branches:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x]
# os: [macos-latest, windows-latest, ubuntu-latest]
os: [ubuntu-latest]
steps:
- run: echo "Running on ${{ matrix.os }} with Node.js ${{ matrix.node-version }}, tag ${{ github.ref }}"
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test
env:
CI: true