Skip to content

Commit

Permalink
ci: run tests for every branch
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Jun 14, 2024
1 parent ed62ec6 commit a6642b5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: push

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm test

0 comments on commit a6642b5

Please sign in to comment.