Skip to content

🔗 Update links to documentation #46

🔗 Update links to documentation

🔗 Update links to documentation #46

Workflow file for this run

name: CI
on:
push:
branches: [main, ci-*]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: actions/cache@v2
with:
path: 'node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: install
run: yarn install
- name: lint
run: yarn run lint
- name: format
run: yarn run lint:format