Skip to content

Proper non-beta vite for appdir #317

Proper non-beta vite for appdir

Proper non-beta vite for appdir #317

Workflow file for this run

name: Push
on: push
jobs:
test:
name: Test and typecheck on node 20.x and ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install deps (with cache)
uses: bahmutov/npm-install@v1
- name: tsc lib
run: cd lib && yarn tsc
- name: tsc app
run: cd app && yarn tsc
- name: Lint
run: yarn lint