Skip to content

Commit

Permalink
Refactor of workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin19 committed Feb 11, 2024
1 parent ed3b9bb commit 426f728
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@ on:
branches: [main]

jobs:
build-and-test:
unit-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- run: npm run build
- run: npm ci
- run: npm test
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- run: npm ci
- run: npm run build

0 comments on commit 426f728

Please sign in to comment.