Skip to content

Dump version

Dump version #83

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
- uses: actions/setup-node@v1
with:
node-version: ${{ vars.NODE_VERSION }}
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build