Skip to content

feat: add GitHub Actions CI workflow #3

feat: add GitHub Actions CI workflow

feat: add GitHub Actions CI workflow #3

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
node-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 'latest']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Run Node.js tests
run: npm run test:shared && npm run test:node
browser-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: Run build
run: npm run build
- name: Run browser tests
run: npm run test:browser