Skip to content

18520 skip not registering #1444

18520 skip not registering

18520 skip not registering #1444

Workflow file for this run

name: Main
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
env:
NEXUS_API_KEY: ${{ secrets.NEXUS_API_KEY }}
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Print dotnet info
run: dotnet --info
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.14.0'
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile --network-timeout 600000 install
- name: Build
run: yarn build
- name: Test
run: yarn test