Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

update (#49)

update (#49) #112

Workflow file for this run

name: Lint
on:
push:
branches: "*"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install dependencies
run: yarn --prefer-offline
- name: Lint
run: yarn lint
env:
CI: true