tridactyl/.github/workflows/lint.yml
2023-09-18 08:02:15 +02:00

28 lines
494 B
YAML

name: lint
on:
push:
branches:
- 'master'
paths-ignore:
- '/readme.md'
pull_request:
branches:
- '*'
paths-ignore:
- '/readme.md'
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
step: [lint, unit, mozilla]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
run: yarn install
- name: ${{ matrix.step }}
env:
STEP: ${{ matrix.step }}
run: bash -c ./ci/$STEP.sh