opengoal-launcher/.github/workflows/lint.yaml
2022-04-15 21:47:14 -04:00

31 lines
494 B
YAML

name: Linter
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tauri:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v1
with:
node-version: 16
- name: install dependencies and check formatting
run: |
npm ci
npm run lint