mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
29 lines
494 B
YAML
29 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
|