substr/.gitea/workflows/test_and_lint.yml
Râu Cao 65fe418163
Some checks are pending
Test and lint / Test and lint (push) Waiting to run
WIP Set up CI
2024-12-03 17:54:26 +01:00

18 lines
365 B
YAML

name: Test and lint
on:
push:
jobs:
test_and_lint:
name: Test and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: denoland/setup-deno@v2
with:
deno-version: v2.1.x
- run: "deno task test"
- run: "deno lint"