Skip to content

Commit 36656f0

Browse files
committed
update github test workflow to use actions-yarn
1 parent 5b274ca commit 36656f0

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,19 @@ jobs:
2424
- name: Install deps and build (with cache)
2525
uses: borales/[email protected]
2626
with:
27-
install-command: install --immutable --silent
27+
cmd: install --immutable --silent
2828

2929
- name: Check types
30-
run: yarn typecheck
30+
uses: borales/[email protected]
31+
with:
32+
cmd: typecheck
3133

3234
- name: Build
33-
run: yarn build
35+
uses: borales/[email protected]
36+
with:
37+
cmd: build
3438

3539
- name: Jest run
36-
run: yarn test
40+
uses: borales/[email protected]
41+
with:
42+
cmd: test

0 commit comments

Comments
 (0)