Skip to content

Commit

Permalink
Upgrade CI workflow and add UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niedzielski committed Feb 27, 2024
1 parent fbeae9c commit c3da0cc
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,21 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci --no-fund
- run: npm run test:format
- run: npm run test:types:ui
- run: npm run test:unit
- run: npm run build
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm ci --no-fund
- name: Test Format
run: npm run test:format
- name: Unit Test
run: npm run test:unit
- name: Build
run: npm run build
- name: Test Size
- run: npm run test:size
- name: Type-check UI
run: npm run test:types:ui
- name: Test UI
run: npm run test:ui

0 comments on commit c3da0cc

Please sign in to comment.