We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36856fe commit 3cfa84dCopy full SHA for 3cfa84d
.github/workflows/build.yaml
@@ -0,0 +1,23 @@
1
+name: Build
2
+
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
13
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
16
+ with:
17
+ node-version: 22
18
19
+ - name: Install dependencies
20
+ run: npm ci
21
22
+ - name: Build
23
+ run: npm run build
.github/workflows/build.yml
.github/workflows/on-pr.yaml
@@ -0,0 +1,11 @@
+name: On Pull Request
+ pull_request:
+ types:
+ - opened
+ - synchronize
+ uses: ./.github/workflows/build.yaml
0 commit comments