File tree 2 files changed +11
-12
lines changed
2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 22
22
- name : Install dependencies
23
23
run : yarn install
24
24
25
- - name : Build lib package
26
- run : yarn workspace opticks build
25
+ - name : Build all packages
26
+ run : yarn workspaces foreach -A run build
27
27
28
- - name : Test lib package
29
- run : yarn workspace opticks test
30
-
31
- - name : Build cli package
32
- run : yarn workspace opticks-cli build
33
-
34
- - name : Test cli package
35
- run : yarn workspace opticks-cli test
28
+ - name : Test all packages
29
+ run : yarn workspaces foreach -A run test
Original file line number Diff line number Diff line change @@ -27,12 +27,17 @@ jobs:
27
27
corepack --version
28
28
yarn --version
29
29
30
- - run : yarn install
30
+ - name : Install dependencies
31
+ run : yarn install
32
+
33
+ - name : Build all packages
34
+ run : yarn workspaces foreach -A run build
35
+
31
36
- name : Create Release Pull Request or Publish
32
37
id : changesets
33
38
uses : changesets/action@v1
34
39
with :
35
- publish : yarn workspace opticks release
40
+ publish : npx changeset publish
36
41
env :
37
42
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
38
43
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments