Skip to content

Commit

Permalink
ci: add node 16 ssr test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdyman committed Sep 1, 2023
1 parent e0b1949 commit f879765
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ssr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: SSR

on:
push:
branches: [main]
pull_request:
types:
- opened
- synchronize
workflow_dispatch:

jobs:
build:
name: Run SSR Tests
runs-on: ubuntu-latest

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

- uses: pnpm/action-setup@v2

- name: ⚒️ Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'

- name: 📦 Install Dependencies
run: npm run bootstrap

- name: 🔨 Build
run: pnpm run build

- name: 🧪 Test
run: pnpm run test:ssr

0 comments on commit f879765

Please sign in to comment.