firq-dev-website/.forgejo/workflows/linting.yml

26 lines
738 B
YAML
Raw Permalink Normal View History

2023-12-20 23:16:39 +00:00
on:
push:
branches:
2024-07-19 20:52:15 +00:00
- '**'
2023-12-20 23:16:39 +00:00
jobs:
2024-07-20 13:59:15 +00:00
get-version:
runs-on: docker
steps:
- name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3
- name: Check if Version in package.json matches Tag
run: |
VERSION=$(npm pkg get version --workspaces=false | tr -d \")
echo "Version is: '$VERSION'";
2024-07-19 20:52:15 +00:00
astro-check:
2023-12-20 23:16:39 +00:00
runs-on: docker
2024-07-19 20:52:15 +00:00
container: forgejo.neshweb.net/ci-docker-images/node-alpine-git:latest
2023-12-20 23:16:39 +00:00
steps:
- name: Checkout source code
uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages
2024-07-19 20:52:15 +00:00
run: npm i
2023-12-20 23:16:39 +00:00
- name: Run astro check (linting + static analysis)
run: npm run astro check