mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-06-10 16:42:48 +02:00
392b549646
Switch from BoaJS to Deno core
17 lines
281 B
YAML
17 lines
281 B
YAML
on: [push]
|
|
|
|
name: CI (JS)
|
|
|
|
jobs:
|
|
test:
|
|
name: Lint/Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
- run: npm ci
|
|
- run: npm run lint
|
|
- run: npm test
|