You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
getcryst.al/.github/workflows/test.yml

23 lines
424 B
YAML

name: Lint Code
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "yarn"
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint