Skip to content

chore .npmrc

chore .npmrc #371

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Test ${{ matrix.example }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
example:
- examples/basic
- examples/ssr-spa
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- run: pnpm install
- name: Build vike-solid
run: pnpm run build
- name: Test building example
run: pnpm run build
working-directory: ./${{ matrix.example }}
- name: Test TypeScript example
run: pnpm run test
working-directory: ./${{ matrix.example }}