File tree 5 files changed +32990
-11109
lines changed
5 files changed +32990
-11109
lines changed Original file line number Diff line number Diff line change @@ -19,18 +19,18 @@ jobs:
19
19
uses : actions/setup-node@v2
20
20
with :
21
21
node-version : " 16.11.0"
22
- cache : yarn
22
+ cache : npm
23
23
env :
24
24
NODE_AUTH_TOKEN : ${{ secrets.GH_PAT_TOKEN }}
25
25
26
26
- name : Install dependencies
27
- run : yarn install --immutable --ignore-scripts
27
+ run : npm install --ignore-scripts
28
28
29
29
- name : Build
30
- run : yarn build
30
+ run : npm run build
31
31
32
32
- name : Run linters
33
- run : yarn lint
33
+ run : npm run lint
34
34
35
35
tests :
36
36
runs-on : ubuntu-latest
@@ -41,15 +41,15 @@ jobs:
41
41
uses : actions/setup-node@v2
42
42
with :
43
43
node-version : " 16.11.0"
44
- cache : yarn
44
+ cache : npm
45
45
env :
46
46
NODE_AUTH_TOKEN : ${{ secrets.GH_PAT_TOKEN }}
47
47
48
48
- name : Install dependencies
49
- run : yarn install --immutable --ignore-scripts
49
+ run : npm install --ignore-scripts
50
50
51
51
- name : Build
52
- run : yarn build
52
+ run : npm run build
53
53
54
54
- name : Run tests
55
- run : yarn test
55
+ run : npm run lint
Original file line number Diff line number Diff line change 4
4
5
5
We recommend using [ nvm] ( https://github.com/nvm-sh/nvm ) to manage Node.js versions. Execute ` nvm use ` , if you have ` nvm ` installed.
6
6
7
- We currently use [ yarn] ( https://yarnpkg.com/getting-started/install ) to manage dependencies.
8
-
9
- Then, run ` yarn ` after ` yarn ` is installed
7
+ Then, run ` npm `
10
8
11
9
## Running tests
12
10
13
11
To run the tests:
14
12
15
13
```
16
- yarn test
14
+ npm run test
17
15
```
18
16
19
17
The first run might fail due to typechain needing to compile. If so, just run the command again.
You can’t perform that action at this time.
0 commit comments