0.0.3: Exotic Type Gymnastics #3
|
@ -1,4 +1,4 @@
|
||||||
name: Publish to npm
|
name: Quality Check & Publish
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
24
.github/workflows/workflow.yaml
vendored
Normal file
24
.github/workflows/workflow.yaml
vendored
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user