Skip to content

Commit e5a354b

Browse files
authored
chore(ci): revert tailwindcss, run web build in ci (#2695)
* chore(ci): run web build in ci * downgrade tailwindcss
1 parent 0854b31 commit e5a354b

File tree

3 files changed

+362
-96
lines changed

3 files changed

+362
-96
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ jobs:
4747
web-tests:
4848
name: Web unit tests
4949
runs-on: ubuntu-latest
50+
defaults:
51+
run:
52+
working-directory: web
5053
steps:
5154
- name: Checkout
5255
uses: actions/checkout@v5
@@ -56,16 +59,16 @@ jobs:
5659
node-version-file: ./web/.nvmrc
5760
- name: Install dependencies
5861
run: |
59-
cd web
6062
npm install
6163
- name: Run web lint
6264
run: |
63-
cd web
6465
npm run lint
6566
- name: Run web unit tests
6667
run: |
67-
cd web
6868
npm run test:unit
69+
- name: Build web
70+
run: |
71+
npm run build
6972
7073
unit-tests:
7174
name: Unit tests

0 commit comments

Comments
 (0)