site/.github/workflows/ci.yml
Sam Poder 5d96651b93 Remove Build from GitHub Actions (#294)
This feel redundant given we have Vercel checking it for us, thoughts?
2022-01-14 11:48:07 +11:00

14 lines
226 B
YAML

name: CI
on:
- push
- pull_request
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: yarn install
- run: yarn lint