Skip to content

Commit

Permalink
Add CI checks (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPower authored Nov 21, 2023
1 parent d856d22 commit 69823b4
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
pull_request:

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run eslint
13 changes: 13 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
pull_request:

jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run prettier
13 changes: 13 additions & 0 deletions .github/workflows/svelte-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
pull_request:

jobs:
svelte-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run check

0 comments on commit 69823b4

Please sign in to comment.