aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 9d2220efec79a0ce14d95783af46c0dfadcc75fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Test CI

on: [push, pull_request]
    
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v5
      - name: Setup Node
        uses: actions/setup-node@v4
        with:
          node-version: 20
      - name: Install Dependencies
        run: npm install
      - name: Run Tests
        run: npm test