From 1f2cdba63253281660866b71d53f7a302381a7b8 Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Fri, 8 Aug 2025 19:49:19 -0400 Subject: [PATCH 1/5] Update main.yml attempting yarn install --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ebb7f43..2c393d9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,6 +39,9 @@ jobs: run: corepack enable # YARN + - uses: borales/actions-yarn@v3.0.0 + with: + cmd: set version stable # will run `yarn set version stable` command - uses: borales/actions-yarn@v3.0.0 with: cmd: install # will run `yarn install` command From 3fda6490caca365c911b5b8a761be1988d37b538 Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Fri, 8 Aug 2025 19:52:18 -0400 Subject: [PATCH 2/5] Update main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c393d9..1c31c30 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,10 +38,10 @@ jobs: - name: Enable Corepack run: corepack enable + - name: Enable Yarn v4 + run: corepack prepare yarn@4.x --activate + # YARN - - uses: borales/actions-yarn@v3.0.0 - with: - cmd: set version stable # will run `yarn set version stable` command - uses: borales/actions-yarn@v3.0.0 with: cmd: install # will run `yarn install` command From 72efcb1e55f3a4fb5a65567f5e9a6208e88805e0 Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Fri, 8 Aug 2025 19:53:29 -0400 Subject: [PATCH 3/5] Update main.yml --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1c31c30..f598669 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,11 +38,11 @@ jobs: - name: Enable Corepack run: corepack enable - - name: Enable Yarn v4 + - name: Enable Corepack run: corepack prepare yarn@4.x --activate # YARN - - uses: borales/actions-yarn@v3.0.0 + - uses: borales/actions-yarn@v4.x with: cmd: install # will run `yarn install` command #- uses: borales/actions-yarn@v3.0.0 @@ -51,12 +51,12 @@ jobs: #- uses: borales/actions-yarn@v3.0.0 # with: # cmd: type-check # will run `yarn type-check` command - - uses: borales/actions-yarn@v3.0.0 + - uses: borales/actions-yarn@v4.x with: cmd: lint # will run `yarn lint` command - - uses: borales/actions-yarn@v3.0.0 + - uses: borales/actions-yarn@v4.x with: cmd: build # will run `yarn build` command - - uses: borales/actions-yarn@v3.0.0 + - uses: borales/actions-yarn@v4.x with: cmd: build # will run `yarn start` command From 8e80645911d4f94b9465c3987958d490bb4d1d24 Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Fri, 8 Aug 2025 19:54:39 -0400 Subject: [PATCH 4/5] Update main.yml --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f598669..73d04be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,10 +39,10 @@ jobs: run: corepack enable - name: Enable Corepack - run: corepack prepare yarn@4.x --activate + run: corepack prepare yarn@4.9.2 --activate # YARN - - uses: borales/actions-yarn@v4.x + - uses: borales/actions-yarn@4.9.2 with: cmd: install # will run `yarn install` command #- uses: borales/actions-yarn@v3.0.0 @@ -51,12 +51,12 @@ jobs: #- uses: borales/actions-yarn@v3.0.0 # with: # cmd: type-check # will run `yarn type-check` command - - uses: borales/actions-yarn@v4.x + - uses: borales/actions-yarn@4.9.2 with: cmd: lint # will run `yarn lint` command - - uses: borales/actions-yarn@v4.x + - uses: borales/actions-yarn@4.9.2 with: cmd: build # will run `yarn build` command - - uses: borales/actions-yarn@v4.x + - uses: borales/actions-yarn@4.9.2 with: cmd: build # will run `yarn start` command From 157891e09027f06ac0069207b286c1fb0a6363ec Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Fri, 8 Aug 2025 19:58:51 -0400 Subject: [PATCH 5/5] Update main.yml --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73d04be..51d2f42 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: node-version: [18.x, 20.x, 22.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # NPM # - name: Use Node.js ${{ matrix.node-version }} @@ -42,21 +42,21 @@ jobs: run: corepack prepare yarn@4.9.2 --activate # YARN - - uses: borales/actions-yarn@4.9.2 + - uses: borales/actions-yarn@v4 with: - cmd: install # will run `yarn install` command + cmd: install --immutable # will run `yarn install` command #- uses: borales/actions-yarn@v3.0.0 # with: # cmd: test # will run `yarn test` command #- uses: borales/actions-yarn@v3.0.0 # with: # cmd: type-check # will run `yarn type-check` command - - uses: borales/actions-yarn@4.9.2 + - uses: borales/actions-yarn@v4 with: cmd: lint # will run `yarn lint` command - - uses: borales/actions-yarn@4.9.2 + - uses: borales/actions-yarn@v4 with: cmd: build # will run `yarn build` command - - uses: borales/actions-yarn@4.9.2 + - uses: borales/actions-yarn@v4 with: cmd: build # will run `yarn start` command