Skip to content

Commit 788736c

Browse files
committed
chore(ci): minor fix
- add actions permission - add command to install example dependencies
1 parent 8eec20b commit 788736c

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/qa.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Qa
22

3+
permissions:
4+
contents: read
5+
pull-requests: write
6+
37
on:
48
push:
59
branches:
@@ -77,7 +81,10 @@ jobs:
7781
secrets: ${{ toJSON(secrets) }}
7882

7983
- name: Test (Examples)
80-
run: cd examples;yarn test
84+
run: |
85+
cd examples
86+
yarn install --immutable
87+
yarn test
8188
8289
- name: Test (Unit)
8390
run: yarn test:unit

0 commit comments

Comments
 (0)