File tree Expand file tree Collapse file tree 6 files changed +45
-7
lines changed Expand file tree Collapse file tree 6 files changed +45
-7
lines changed Original file line number Diff line number Diff line change 10
10
/jest.config.js
11
11
/jest.runner.config.js
12
12
13
+ /.yarn
14
+
13
15
/.eslintrc
14
16
/.eslintrc. *
15
17
/test /.eslintrc
16
- /test /.eslintrc. *
18
+ /test /.eslintrc. *
Original file line number Diff line number Diff line change 16
16
with :
17
17
github-token : ${{ secrets.GITHUB_TOKEN }}
18
18
script : |
19
- github.issues.createComment({
19
+ github.rest. issues.createComment({
20
20
issue_number: context.issue.number,
21
21
owner: context.repo.owner,
22
22
repo: context.repo.repo,
34
34
id : fork_status
35
35
run : |
36
36
IS_FORK="$(jq '.head.repo.fork' "/tmp/pr.json")"
37
- echo "::set-output name= fork:: $IS_FORK"
37
+ echo "fork= $IS_FORK" >> "$GITHUB_OUTPUT "
38
38
39
39
- name : ' Setup SSH deploy key'
40
40
if : steps.fork_status.outputs.fork == 'false'
92
92
with :
93
93
github-token : ${{ secrets.GITHUB_TOKEN }}
94
94
script : |
95
- github.issues.createComment({
95
+ github.rest. issues.createComment({
96
96
issue_number: context.issue.number,
97
97
owner: context.repo.owner,
98
98
repo: context.repo.repo,
@@ -106,7 +106,7 @@ jobs:
106
106
with :
107
107
github-token : ${{ secrets.GITHUB_TOKEN }}
108
108
script : |
109
- github.issues.createComment({
109
+ github.rest. issues.createComment({
110
110
issue_number: context.issue.number,
111
111
owner: context.repo.owner,
112
112
repo: context.repo.repo,
Original file line number Diff line number Diff line change 3
3
/dist
4
4
/node_modules
5
5
6
+ /.yarn
7
+ /.yarnrc.yml
8
+
6
9
# These are org-wide files (https://github.com/exercism/org-wide-files/)
7
10
/.github /labels.yml
8
11
/.github /workflows /sync-labels.yml
9
12
10
13
/CODE_OF_CONDUCT.md
11
- /LICENSE
14
+ /LICENSE
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
nodeLinker : node-modules
2
2
3
+ plugins :
4
+ - path : .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
5
+ spec : " @yarnpkg/plugin-workspace-tools"
6
+
3
7
yarnPath : .yarn/releases/yarn-3.6.0.cjs
Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ COPY . .
21
21
# Build the test runner
22
22
RUN set -ex; \
23
23
# install all the development modules (used for building)
24
+ yarn plugin import workspace-tools; \
24
25
yarn install; \
25
26
yarn build; \
26
27
rm -rf node_modules; \
27
28
# install only the node_modules we need for production
28
- yarn install --production; \
29
+ yarn workspaces focus --production; \
29
30
# clean our yarn cache
30
31
yarn cache clean;
31
32
You can’t perform that action at this time.
0 commit comments