Skip to content

Commit

Permalink
ci: add basic GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
acutmore committed Aug 20, 2024
1 parent b440d96 commit 4fb745e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: Test + Lint + Check
runs-on: ubuntu-latest
steps:
- run: npm ci
- run: npm run check
- run: npm run format:check
- run: npm test

0 comments on commit 4fb745e

Please sign in to comment.