feat: Add --no-lockfile to the yarn install step in the pipeline
parent
efe6834d99
commit
eb97eaeb38
|
@ -22,7 +22,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: ${{ matrix.node }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn
|
run: yarn --no-lockfile
|
||||||
- name: Run eslint
|
- name: Run eslint
|
||||||
run: yarn run eslint
|
run: yarn run eslint
|
||||||
integration:
|
integration:
|
||||||
|
@ -38,7 +38,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: ${{ matrix.node }}
|
||||||
- name: Install dependencies plugin
|
- name: Install dependencies plugin
|
||||||
run: yarn --unsafe-perm --production
|
run: yarn --no-lockfile --unsafe-perm --production
|
||||||
- name: Install dependencies playground
|
- name: Install dependencies playground
|
||||||
run: yarn playground:install --unsafe-perm
|
run: yarn playground:install --unsafe-perm
|
||||||
- name: Build playground
|
- name: Build playground
|
||||||
|
|
Loading…
Reference in New Issue