Skip to content

v0.7.0

v0.7.0 #371

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'v*'
pull_request: {}
jobs:
test:
name: Tests
runs-on: ubuntu-latest
env:
CI: 'true'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Compile TypeScript
run: yarn compile
- name: Lint JS
run: yarn lint:js
- name: Test
run: yarn test