Skip to content

Commit

Permalink
Merge pull request #9 from AurelienLourot/quality/ci
Browse files Browse the repository at this point in the history
qual: set up CI
  • Loading branch information
magne4000 authored Aug 23, 2023
2 parents 70d7b23 + a7f8fda commit 5af39f1
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI
on:
- push

jobs:
build:
name: Build on ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- name: Checkout
uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false

- name: Install dependencies
run: pnpm install

- name: Build vike-solid
run: pnpm run build

- name: Build example basic
run: pnpm run build
working-directory: ./examples/basic

- name: Build example ssr-spa
run: pnpm run build
working-directory: ./examples/ssr-spa

0 comments on commit 5af39f1

Please sign in to comment.