Skip to content

Commit d0a4079

Browse files
committed
Run tests in CI
1 parent 268047b commit d0a4079

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
uses: actions/checkout@v6
2626
with:
2727
submodules: true
28-
- name: Set up Node.js 20
28+
- name: Set up Node.js 24
2929
uses: actions/setup-node@v6
3030
with:
31-
node-version: "20.x"
31+
node-version: "24.x"
3232
cache: yarn
3333
- name: Install dependencies
3434
run: yarn install --frozen-lockfile
@@ -37,6 +37,8 @@ jobs:
3737
id: vars
3838
run: |
3939
echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
40+
- name: Run tests
41+
run: yarn test
4042
- name: Build app
4143
run: yarn build
4244
- name: Upload build artifacts

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
uses: actions/setup-python@v6
3434
with:
3535
python-version: "3.x"
36-
- name: Set up Node.js 20
36+
- name: Set up Node.js 24
3737
uses: actions/setup-node@v6
3838
with:
39-
node-version: "20.x"
39+
node-version: "24.x"
4040
cache: yarn
4141
- name: Install dependencies
4242
run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)