Skip to content

Commit

Permalink
fix: remove --immutable flag to get through CI error potentially
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Sep 12, 2023
1 parent 6ee54a4 commit 1000fbc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cache: yarn
node-version: 18
- run: corepack enable
- run: yarn --immutable && yarn build
- run: yarn && yarn build

- name: Run benchmarks
run: yarn benchmark
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-manual.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CloudFlare Pages Deploy
on:
on:
workflow_dispatch:

jobs:
Expand All @@ -16,7 +16,7 @@ jobs:
node-version: '16'
- run: corepack enable
- name: Bootstrap
run: yarn --immutable
run: yarn
- name: Build
run: yarn build
- name: Publish to Cloudflare Pages
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
release-type: node
monorepo-tags: true
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":true}]'

- uses: actions/checkout@v3
if: ${{ steps.release.outputs.releases_created }}

- uses: actions/setup-node@v3
with:
cache: 'yarn'
Expand All @@ -37,8 +37,8 @@ jobs:
if: ${{ steps.release.outputs.releases_created }}

- run: corepack enable
- run: yarn install --immutable

- run: yarn install
if: ${{ steps.release.outputs.releases_created }}

- run: git config user.email $(git --no-pager show -s --format='%ae' HEAD)
Expand All @@ -54,7 +54,7 @@ jobs:
if: ${{ steps.release.outputs.releases_created }}
run: |
echo npmAuthToken: "$NODE_AUTH_TOKEN" >> ./.yarnrc.yml
- run: yarn workspaces foreach -v --exclude root --exclude simpleserialize.com --no-private npm publish --tolerate-republish --access public
if: ${{ steps.release.outputs.releases_created }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
cache: yarn
- run: corepack enable
- name: Bootstrap
run: yarn --immutable
run: yarn
- name: Build
run: yarn build
- name: Check types
Expand Down
2 changes: 1 addition & 1 deletion simpleserialize.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY packages/simpleserialize.com/package.json packages/simpleserialize.com/yarn


RUN corepack enable
RUN yarn install --immutable
RUN yarn install

COPY . .
RUN npm rebuild node-sass
Expand Down

0 comments on commit 1000fbc

Please sign in to comment.