We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 759b08f commit d3b33dcCopy full SHA for d3b33dc
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+name: Creator Dashboard Build
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Use Node.js
15
+ uses: actions/setup-node@v3
16
+ with:
17
+ node-version: '18'
18
+ - run: npm ci
19
+ - run: npm run build
0 commit comments