Skip to content

Commit b4a3d88

Browse files
authored
Fixed yarn error (#276)
1 parent 79d7f11 commit b4a3d88

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
17+
1818
- name: Use Node.js ${{ matrix.node-version }}
1919
uses: actions/setup-node@v2
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

2323
- name: Install dependencies
24-
run: yarn --frozen-lockfile
24+
run: yarn --immutable
2525

2626
- name: Lint Typescript
2727
run: yarn lint
@@ -39,8 +39,8 @@ jobs:
3939

4040
- name: Run e2e tests
4141
run: |
42-
yarn dev & yarn wait-on http://localhost:1337
42+
yarn dev & yarn wait-on http://localhost:1337
4343
yarn test:e2e
4444
45-
- name: Build application
46-
run: yarn prod
45+
- name: Build application
46+
run: yarn prod

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
yarnPath: ".yarn/releases/yarn-berry.cjs"
2+
nodeLinker: node-modules

0 commit comments

Comments
 (0)