Skip to content

Commit

Permalink
Remove lockfile (#64)
Browse files Browse the repository at this point in the history
* remove lockfile

Signed-off-by: Jan Kowalleck <[email protected]>

* wip

Signed-off-by: Jan Kowalleck <[email protected]>

---------

Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck authored Mar 31, 2024
1 parent 8052cd7 commit 8fe59c5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ env:
REPORTS_DIR: "CI_reports"
TESTS_REPORTS_ARTIFACT: tests-reports
STANDARD_REPORTS_ARTIFACT: cs-reports
# we do not ship a lockfile, but yarn tries to protect our non-existing lockfile ... wtf ... disable this fuckup
YARN_ENABLE_HARDENED_MODE: 0 # https://yarnpkg.com/features/security

jobs:
Expand All @@ -46,7 +47,7 @@ jobs:
corepack enable yarn
yarn set version ${{ env.YARN_VERSION }}
- name: Setup subject
run: yarn install
run: yarn install --no-immutable
- name: build
run: yarn run build:gbti
- name: build
Expand Down Expand Up @@ -79,7 +80,7 @@ jobs:
corepack enable yarn
yarn set version ${{ env.YARN_VERSION }}
- name: Setup subject
run: yarn install
run: yarn install --no-immutable
- name: build
run: yarn run build:gbti
- name: test
Expand Down Expand Up @@ -122,7 +123,7 @@ jobs:
corepack enable yarn
yarn set version ${{ env.YARN_VERSION }}
- name: Setup subject
run: yarn install
run: yarn install --no-immutable
- name: build
run: yarn run build:gbti
- name: test
Expand Down Expand Up @@ -161,7 +162,7 @@ jobs:
corepack enable yarn
yarn set version ${{ env.YARN_VERSION }}
- name: Setup subject
run: yarn install
run: yarn install --no-immutable
- name: setup-tests
run: yarn run setup-tests
- name: fetch build artifact
Expand Down Expand Up @@ -216,7 +217,7 @@ jobs:
corepack enable yarn
yarn set version ${{ env.YARN_VERSION }}
- name: Setup subject
run: yarn install
run: yarn install --no-immutable
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 8fe59c5

Please sign in to comment.