Skip to content

Commit 0b06b11

Browse files
authored
add init (#39)
1 parent 63676ae commit 0b06b11

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/init.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)