Skip to content

chore: wip

chore: wip #9

Workflow file for this run

name: GitHub Actions
on: [push]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test