Skip to content

Commit

Permalink
fix: update test action
Browse files Browse the repository at this point in the history
  • Loading branch information
oscnord committed Mar 28, 2024
1 parent dac9758 commit 1318714
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
name: Run tests
on: push
name: Unit Tests
on: [push]

jobs:
test:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and run tests
run: |
npm install
npm test
node-version: '18.x'
- name: Install Dependencies
run: npm ci
- name: Run Unit Tests
run: npm test

0 comments on commit 1318714

Please sign in to comment.