Skip to content

Commit

Permalink
Try to add lint test action
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed May 18, 2024
1 parent 2da4e17 commit 3d4de06
Show file tree
Hide file tree
Showing 7 changed files with 1,781 additions and 1,236 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Lint test"

on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]

jobs:
app:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
Loading

0 comments on commit 3d4de06

Please sign in to comment.