We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ba789 commit 8a273f7Copy full SHA for 8a273f7
.github/actions/setup-node/action.yml
@@ -2,10 +2,12 @@ name: "Setup Node.js"
2
runs:
3
using: "composite"
4
steps:
5
+ - run: corepack enable
6
+
7
- name: "Install Node 20.x"
8
uses: actions/setup-node@v4
9
with:
- node-version: "20"
10
+ node-version-file: "./client/package.json"
11
cache: "yarn"
12
cache-dependency-path: ./client/yarn.lock
13
.github/workflows/continuous_integration.yml
@@ -5,6 +5,8 @@ on:
branches:
- master
pull_request:
+ branches:
+ - "**"
env:
BROWSERSLIST_IGNORE_OLD_DATA: beQuiet
0 commit comments