Skip to content

Commit

Permalink
ci: rename ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard committed Mar 18, 2024
1 parent b536d26 commit f636bba
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 30 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/run-cbtc-unit-tests.yml

This file was deleted.

20 changes: 19 additions & 1 deletion .github/workflows/run-unit-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: [ "main" ]

jobs:
build:
unit-tests:
runs-on: ubuntu-latest

strategy:
Expand All @@ -26,3 +26,21 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm test

cbtc-unit-tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- working-directory: ./example/cbtc
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test

0 comments on commit f636bba

Please sign in to comment.