Skip to content

Commit

Permalink
ci(github): add lint workflow (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmywil authored Feb 18, 2025
1 parent 7c476de commit 71837b0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test

0 comments on commit 71837b0

Please sign in to comment.