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 b40eabe commit 84a4eaeCopy full SHA for 84a4eae
.github/workflows/build.yml
@@ -0,0 +1,29 @@
1
+name: Build
2
+
3
+on:
4
+ workflow_dispatch:
5
+ pull_request:
6
+ types: [opened, reopened, synchronize, ready_for_review]
7
8
+concurrency:
9
+ group: ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: '18'
23
+ cache: 'npm'
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Build
29
+ run: npm run build
0 commit comments