Attempt to fix CI workflow
This commit is contained in:
22
.github/workflows/build_and_test.yaml
vendored
22
.github/workflows/build_and_test.yaml
vendored
@@ -14,8 +14,28 @@ jobs:
|
||||
config: ""
|
||||
version: custom
|
||||
|
||||
setup:
|
||||
runs-on: windows-gp
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: .node-version
|
||||
|
||||
- name: Install Yarn
|
||||
run: npm install -g yarn
|
||||
|
||||
- name: Cache Yarn dependencies
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.yarn/cache
|
||||
key: yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
yarn-
|
||||
|
||||
windows:
|
||||
needs: fetch
|
||||
needs: [fetch, setup]
|
||||
name: Windows Build
|
||||
uses: ./.github/workflows/build_windows.yaml
|
||||
with:
|
||||
|
||||
4
.github/workflows/build_prepare.yaml
vendored
4
.github/workflows/build_prepare.yaml
vendored
@@ -30,7 +30,9 @@ jobs:
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: .node-version
|
||||
cache: "yarn"
|
||||
|
||||
- name: Install Yarn
|
||||
run: npm install -g yarn
|
||||
|
||||
- name: Install Deps
|
||||
run: "yarn install --frozen-lockfile"
|
||||
|
||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
||||
check:
|
||||
name: Post release checks
|
||||
needs: release
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: windows-gp
|
||||
permissions:
|
||||
checks: read
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user