We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ba789 commit 636ac64Copy full SHA for 636ac64
.github/actions/setup-node/action.yml
@@ -5,7 +5,7 @@ runs:
5
- name: "Install Node 20.x"
6
uses: actions/setup-node@v4
7
with:
8
- node-version: "20"
+ node-version-file: "./client/package.json"
9
cache: "yarn"
10
cache-dependency-path: ./client/yarn.lock
11
.github/workflows/continuous_integration.yml
@@ -5,6 +5,8 @@ on:
branches:
- master
pull_request:
+ branches:
+ - "**"
env:
12
BROWSERSLIST_IGNORE_OLD_DATA: beQuiet
@@ -23,6 +25,7 @@ jobs:
23
25
- name: "Checkout code"
24
26
uses: actions/checkout@v3
27
28
+ - run: corepack enable
29
- uses: ./.github/actions/setup-node
30
31
- name: "Lint client"
0 commit comments