This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
Add move notice #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: CI | |
on: [push] | |
jobs: | |
build-format-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
cache: 'yarn' | |
- name: Install the packages | |
run: yarn install --frozen-lockfile --ignore-engines | |
- name: Build the code | |
run: yarn build:ci | |
- name: Check formatting | |
run: yarn format:check | |
- name: Check lint | |
run: yarn lint |