Skip to content

Commit f2cee64

Browse files
authored
ci(workflows): rename node.js to test, run in merge queue (#28376)
* ci(workflows): rename `node.js` to `test` * ci(test): run in merge_group
1 parent 6e3f638 commit f2cee64

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
1-
name: Node.js CI
1+
name: Test
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches:
6+
- main
67
pull_request:
8+
merge_group:
79

810
permissions:
911
contents: read
1012

1113
jobs:
1214
test:
13-
name: Active LTS
1415
runs-on: ubuntu-latest
1516
steps:
1617
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1718
with:
1819
persist-credentials: false
20+
1921
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2022
with:
2123
node-version-file: ".nvmrc"
2224
cache: npm
2325
package-manager-cache: true
26+
2427
- run: npm ci
28+
2529
- run: npm test
2630
env:
2731
FORCE_COLOR: 3

0 commit comments

Comments
 (0)