Skip to content

Commit

Permalink
Merge pull request #66 from Novage/feat/workflow-names
Browse files Browse the repository at this point in the history
Improve workflows
  • Loading branch information
mrlika committed Feb 15, 2024
2 parents 3a727e3 + c133f33 commit cac90af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [main]

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

steps:
Expand All @@ -20,6 +20,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Run tests
run: npm run test:coverage

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:

jobs:
test:
build-pr:
runs-on: ubuntu-latest

steps:
Expand All @@ -19,5 +19,8 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Run tests
run: npm run test:coverage

0 comments on commit cac90af

Please sign in to comment.