0.0.3: Exotic Type Gymnastics #3

Merged
Astrian merged 40 commits from dev into main 2025-05-22 01:17:51 +00:00
2 changed files with 25 additions and 1 deletions
Showing only changes of commit 0131cab6ac - Show all commits

View File

@ -1,4 +1,4 @@
name: Publish to npm name: Quality Check & Publish
on: on:
push: push:

24
.github/workflows/workflow.yaml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Quality Check
on:
push:
branches:
- '*'
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
- name: Install dependencies
run: npm ci
- name: Run Biome
run: npm run quality-check
if: always()
outputs:
status: ${{ job.status }}