mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
28 lines
494 B
YAML
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
|