Skip to content

v2.12.0 (#221)

v2.12.0 (#221) #24

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
tests:
name: Tests
runs-on: pub-hk-ubuntu-22.04-small
strategy:
matrix:
node-version: ["16.20.2"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: build_and_test
run: |
npm install
npm test
env:
CI: true