Skip to content

build(deps): bump typescript to 5.9.3 #133

build(deps): bump typescript to 5.9.3

build(deps): bump typescript to 5.9.3 #133

Workflow file for this run

name: Run faz tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18", "20", "21", "22"]
steps:
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
# Solution from: https://stackoverflow.com/a/67740771/2887989
run: |
export YARN_ENABLE_IMMUTABLE_INSTALLS=false
corepack enable
npm set version stable
npm run yarn
yarn install
- name: Run vitest unit tests
run: |
npm test