Skip to content

Add acts

Add acts #19

Workflow file for this run

name: Web Test
on:
push:
branches:
- main
paths:
- 'apps/web-remix/**'
defaults:
run:
working-directory: apps/web-remix
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8.15.3
- uses: actions/setup-node@v4
with:
node-version: '21.6.2'
cache: 'pnpm'
cache-dependency-path: apps/web-remix/pnpm-lock.yaml
- run: pnpm install
# - run: pnpm tsc
- run: pnpm test
- run: pnpm build