Skip to content

Develop > main

Develop > main #50

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Install deps
run: |
npm install --global yarn
yarn install
- name: Yarn lint
run: yarn run lint