We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63676ae commit 0b06b11Copy full SHA for 0b06b11
1 file changed
.github/workflows/init.yaml
@@ -0,0 +1,22 @@
1
+name: Init
2
+
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
+ init:
8
+ name: Init
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
13
+ - name: Setup Dagger
14
+ uses: dagger/dagger-for-github@v5
15
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 20
20
21
+ - name: Install dependencies
22
+ run: yarn install
0 commit comments