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

28 lines
791 B
YAML
Raw Permalink Normal View History

2024-10-26 12:14:10 +00:00
name: Linting and checking code
2024-10-26 12:16:28 +00:00
run-name: Linting and checking code
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
2024-10-26 12:14:10 +00:00
- name: Get version from package.json
2024-07-20 13:59:15 +00:00
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