2023-12-20 19:32:02 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-01-02 22:54:49 +00:00
|
|
|
- '**'
|
2023-12-20 19:32:02 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-07-25 21:27:04 +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-18 19:29:12 +00:00
|
|
|
astro-check:
|
2023-12-20 19:32:02 +00:00
|
|
|
runs-on: docker
|
2024-07-18 20:04:51 +00:00
|
|
|
container: forgejo.neshweb.net/ci-docker-images/node-alpine-git:latest
|
2023-12-20 19:32:02 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout source code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
- name: Install packages
|
2024-07-18 19:29:12 +00:00
|
|
|
run: npm i
|
2023-12-20 19:32:02 +00:00
|
|
|
- name: Run astro check (linting + static analysis)
|
|
|
|
run: npm run astro check
|