Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Archive notice

Archive notice #1702

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v1
with:
node-version: "17"
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Ensure clean
run: |
git status --porcelain
test -z "$(git status --porcelain)"