mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-12 11:36:32 -04:00
21 lines
310 B
YAML
21 lines
310 B
YAML
name: Linter
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [14, 15, 16]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Code Linting
|
|
run: |
|
|
npm install prettier -g
|
|
prettier --check .
|