Skip to content

Commit 4fb2cd8

Browse files
committed
Switch to yarn for codegen tasks, use lock file
1 parent 8d99df1 commit 4fb2cd8

File tree

3 files changed

+3503
-5
lines changed

3 files changed

+3503
-5
lines changed

.github/workflows/build-test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,16 @@ jobs:
2525
with:
2626
gradle-version: wrapper
2727

28+
- name: Install Yarn
29+
run: npm install -g yarn
30+
2831
- name: Generate code and test suite data
2932
run: |
3033
cd codegen
31-
npm i
32-
npm run build
33-
npm run generate
34-
npm run suite
34+
yarn install --verbose
35+
yarn build
36+
yarn generate
37+
yarn suite
3538
3639
- name: Gradle build and test
3740
run: ./gradlew build

codegen/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/node_modules/
22
/lib/
33

4-
yarn.lock
54
yarn-error.log
65
package-lock.json
76

0 commit comments

Comments
 (0)