Skip to content

10.3.0

10.3.0 #213

Workflow file for this run

name: Verify
on: [push]
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm ci
- name: verify
run: npm run verify