Files
simplelogin-browser-extension/.github/workflows/lint.yaml
T
2024-09-04 21:42:51 +02:00

19 lines
364 B
YAML

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 16
- name: Perform linting
run: |
npm install
npm run prettier:check