Skip to content

chore: bump node version to 18.x for ci #28

chore: bump node version to 18.x for ci

chore: bump node version to 18.x for ci #28

Workflow file for this run

name: Unit Test(Windows)
on:
pull_request:
branches: [master]
jobs:
ut-windows:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x]
os: [windows-latest] # windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 25
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install yarn -g
- name: Install Dependencies
run: yarn install
- name: Test
run: yarn run test