Skip to content

Fix version variable name in Windows (#507) #257

Fix version variable name in Windows (#507)

Fix version variable name in Windows (#507) #257

Workflow file for this run

name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
version: 20.x
- name: Install Dependencies
run: yarn install
- if: matrix.os != 'windows-latest'
name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build