-
-
Notifications
You must be signed in to change notification settings - Fork 19
37 lines (33 loc) · 926 Bytes
/
debug-windows.yaml
File metadata and controls
37 lines (33 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Debug Windows
on:
workflow_dispatch:
env:
DEBUG: "counterfact:*"
jobs:
ci-checks:
name: Debug Windows
runs-on: windows-latest
steps:
- name: Check out repo
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: yarn
id: setup-node
- name: Get Node Version
run: echo "::set-output name=version::$(node -v)"
id: node-version
- name: Cache node_modules
uses: actions/cache@v5
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install Packages
run: yarn install --frozen-lockfile --network-timeout 100000
- name: Build
run: yarn build
- name: Show files
run: Get-ChildItem -Recurse