We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eba1e02 commit c22e3b9Copy full SHA for c22e3b9
.github/workflows/ci.yml
@@ -12,6 +12,8 @@ jobs:
12
13
- name: Set up node
14
uses: actions/setup-node@v3
15
+ with:
16
+ node-version: 20
17
18
- name: Compile
19
run: yarn && yarn build
@@ -25,9 +27,13 @@ jobs:
25
27
26
28
29
30
31
32
- - name: Compile
- run: yarn && yarn test
33
+ - name: Run tests
34
+ run: yarn && yarn test
35
+ env:
36
+ FILEFORGE_API_KEY: ${{ secrets.FILEFORGE_API_KEY }}
37
38
publish:
39
needs: [ compile, test ]
@@ -40,6 +46,8 @@ jobs:
40
46
41
47
42
48
49
50
43
51
44
52
- name: Install dependencies
45
53
run: yarn install
0 commit comments