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:
|
||||
|
||||
Reference in New Issue
Block a user