tridactyl/.github/workflows/lint.yml

29 lines
494 B
YAML
Raw Normal View History

2023-09-17 18:25:39 +02:00
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