Skip to content

build: deliver 0.1.9 #13

build: deliver 0.1.9

build: deliver 0.1.9 #13

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"]
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
npm install -g yarn
npm run yarn
yarn install
- name: Run jest unit tests
run: |
npm test