Skip to content

Tweak 0.7.0

Tweak 0.7.0 #31

Workflow file for this run

name: Verify
# Trigger the workflow on all pull requests, and on push to specific branches
on:
push:
branches:
- master
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Install Node.js, NPM
uses: actions/setup-node@v2-beta
with:
node-version: '18'
- name: checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn
- name: Build sources
run: yarn build
- name: Lint
run: yarn lint
- name: Tests
run: yarn test --verbose