Skip to content

Remove nodemon from run dev example-ssr, because it breaks sandbox ci #4

Remove nodemon from run dev example-ssr, because it breaks sandbox ci

Remove nodemon from run dev example-ssr, because it breaks sandbox ci #4

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: build
run: pnpm run build
- name: test
run: pnpm run test
- name: size
run: pnpm run size