Skip to content

Commit 15f6a5f

Browse files
committed
[C] Test CI
1 parent de3b998 commit 15f6a5f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/actions/setup-node/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
- name: "Install Node 20.x"
66
uses: actions/setup-node@v4
77
with:
8-
node-version: "20"
8+
node-version-file: "./client/package.json"
99
cache: "yarn"
1010
cache-dependency-path: ./client/yarn.lock
1111

@@ -14,4 +14,4 @@ runs:
1414
NODE_ENV: development
1515
working-directory: "./client"
1616
shell: bash
17-
run: yarn install --frozen-lockfile
17+
run: yarn install --immutable

.github/workflows/continuous_integration.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches:
66
- master
77
pull_request:
8+
branches:
9+
- "**"
810

911
env:
1012
BROWSERSLIST_IGNORE_OLD_DATA: beQuiet
@@ -23,6 +25,7 @@ jobs:
2325
- name: "Checkout code"
2426
uses: actions/checkout@v3
2527

28+
- run: corepack enable
2629
- uses: ./.github/actions/setup-node
2730

2831
- name: "Lint client"

0 commit comments

Comments
 (0)