unit tests #338
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Debug Windows | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
DEBUG: "counterfact:*" | |
jobs: | |
ci-checks: | |
name: Debug Windows | |
runs-on: "windows-latest" | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
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@v3 | |
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 |