Skip to content

Adding GitHub Action workflow to run framework tests. #1

Adding GitHub Action workflow to run framework tests.

Adding GitHub Action workflow to run framework tests. #1

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: Test
run: npm run test