Skip to content

Updates to the theme design guide. #22

Updates to the theme design guide.

Updates to the theme design guide. #22

Workflow file for this run

name: Test Astrical Framework
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
name: Build & Test
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Install Playwright browsers
run: npx playwright install
- name: Test
run: npm run test