Implemented forgejo ci

This commit is contained in:
Firq 2023-12-21 00:16:39 +01:00
parent 73d0debc1e
commit 83661b9d38
Signed by: Firq
GPG key ID: 4DE1059A4666E89F
6 changed files with 154 additions and 3 deletions
.forgejo/workflows

View file

@ -0,0 +1,16 @@
on:
push:
branches:
- "**"
jobs:
checking:
runs-on: docker
container: node:lts
steps:
- name: Checkout source code
uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages
run: npm install
- name: Run astro check (linting + static analysis)
run: npm run astro check