Skip to content

Update GitHub Actions workflow to deploy documentation from the main … #28

Update GitHub Actions workflow to deploy documentation from the main …

Update GitHub Actions workflow to deploy documentation from the main … #28

Workflow file for this run

name: Test
on:
push:
branches:
- main
- next
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 22
uses: actions/setup-node@v3
with:
node-version: 22
- name: Installing packages
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint