Initial commit

This commit is contained in:
henryruhs
2023-11-27 00:09:36 +01:00
commit 818e1abf6d
13 changed files with 342 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
name: ci
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run lint