Skip to content

Implement the standard IO library and features for the Stitches app #16

Implement the standard IO library and features for the Stitches app

Implement the standard IO library and features for the Stitches app #16

Workflow file for this run

name: Stitches App Tests
env:
YARN_VERSION: 4.1.1
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Corepack and Yarn 4 Setup
run: |
corepack enable
corepack prepare yarn@${{ env.YARN_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn --immutable
- name: Run Unit Test Suite
run: yarn test:unit