Skip to content

release: v0.19.9

release: v0.19.9 #43

Workflow file for this run

name: Node.js CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: yarn install
- run: yarn build
- run: yarn test
env:
CI: true