1111 runs-on : ubuntu-latest
1212 defaults :
1313 run :
14- working-directory : ./packages/wallet-sdk
14+ working-directory : ./packages/client
1515
1616 steps :
1717 - name : Checkout
2020 - name : Checkout node action
2121 uses : actions/setup-node@v3
2222 with :
23- node-version-file : ' .nvmrc'
24- cache-dependency-path : ' yarn.lock'
23+ node-version-file : " .nvmrc"
24+ cache-dependency-path : " yarn.lock"
2525
2626 - name : Install NPM dependencies
2727 run : yarn install --immutable
3434 runs-on : ubuntu-latest
3535 defaults :
3636 run :
37- working-directory : ./packages/wallet-sdk
37+ working-directory : ./packages/client
3838
3939 steps :
4040 - name : Checkout
@@ -43,15 +43,12 @@ jobs:
4343 - name : Checkout node action
4444 uses : actions/setup-node@v3
4545 with :
46- node-version-file : ' .nvmrc'
47- cache-dependency-path : ' **/yarn.lock'
46+ node-version-file : " .nvmrc"
47+ cache-dependency-path : " **/yarn.lock"
4848
4949 - name : Install NPM dependencies
5050 run : yarn install --immutable
5151
52- - name : Runs compile asset script
53- run : node ./compile-assets.js
54-
5552 - name : Check Types
5653 run : yarn typecheck
5754
6057 runs-on : ubuntu-latest
6158 defaults :
6259 run :
63- working-directory : ./packages/wallet-sdk
60+ working-directory : ./packages/client
6461
6562 strategy :
6663 matrix :
@@ -74,13 +71,10 @@ jobs:
7471 uses : actions/setup-node@v3
7572 with :
7673 node-version : ${{ matrix.node-version }}
77- cache-dependency-path : ' **/yarn.lock'
74+ cache-dependency-path : " **/yarn.lock"
7875
7976 - name : Install NPM dependencies
8077 run : yarn install --immutable
8178
82- - name : Runs compile asset script
83- run : node ./compile-assets.js
84-
8579 - name : Run Unit Tests
8680 run : yarn test
0 commit comments