Skip to content

Commit

Permalink
ci: add step labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ComradeVanti committed Oct 18, 2024
1 parent 4cdb698 commit c2c42a2
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,22 @@ jobs:
runs-on: ubuntu-latest
name: Unit Tests
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: npm ci
- name: Install dependencies
run: npm ci
- name: Unit tests
- name: Run tests
run: npm run test:unit

integration-test:
runs-on: ubuntu-latest
name: Integration Tests
steps:
- name: Checkout repo
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -43,14 +44,15 @@ jobs:
- "22.x" # Latest
name: E2E Tests
steps:
- uses: actions/checkout@v4
- name: setup node.js
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install deps
- name: Install dependencies
run: npm ci
- name: build
- name: Build
run: npm run build
- name: run tests
- name: Run tests
run: npm run test:e2e

0 comments on commit c2c42a2

Please sign in to comment.