Skip to content

0.5.3

0.5.3 #52

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
test:
if: contains(github.ref, 'refs/tags/') == false
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ matrix.node-version }}
- name: Install packages
run: npm ci
- name: Lint
run: npm run lint