hydra/.github/workflows/lint.yml

28 lines
433 B
YAML
Raw Normal View History

2024-04-18 07:46:06 +00:00
name: Lint
on:
push:
2024-04-25 04:52:19 +00:00
branches: "**"
2024-04-18 07:46:06 +00:00
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.11.1
- name: Install dependencies
run: yarn
2024-04-29 10:08:04 +00:00
- name: Typecheck
run: yarn typecheck
2024-04-18 07:46:06 +00:00
- name: Lint
run: yarn lint