Skip to content

feat(ssr): poc

feat(ssr): poc #18

Workflow file for this run

name: Test on push
on:
workflow_dispatch:
pull_request:
jobs:
test:
name: 'Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})'
runs-on: ${{ matrix.os }}
strategy:
matrix:
OS: [ubuntu-latest, macos-latest, windows-latest]
NODE_VERSION: [18, 20]
fail-fast: false
env:
NODE_VERSION: ${{ matrix.NODE_VERSION }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node@${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm i
- name: Test
run: npm run test:ci