We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac35373 commit 8c9a987Copy full SHA for 8c9a987
1 file changed
.github/workflows/build.yaml
@@ -0,0 +1,25 @@
1
+name: build action test
2
+run-name: {{ github. actor }} has been added new commit.
3
+
4
+on:
5
+ push:
6
+ branches-ignore:
7
+ - 'main'
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v3
15
+ - name: set up Node.js
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: '22'
19
+ - name: Install dependencies
20
+ working-directory: ./src
21
+ run: npm ci
22
+ - name: Build project
23
24
+ run: npm run build
25
0 commit comments