puppet-r10k/.gitea/workflows/build.yaml
Ben Vincent b218b4ef4e
All checks were successful
Build / build (pull_request) Successful in 57s
feat: prepare for gitea actions
- add actions workflow
- add makefile with build/clean targets
- add .gitignore file
- update pre-commit hooks
2024-11-17 19:55:36 +11:00

25 lines
458 B
YAML

name: Build
on:
pull_request:
jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8:latest
options: --privileged
steps:
- name: Set up environment
run: |
dnf module enable -y nodejs:20
dnf install -y make bash git nodejs python3.11
- name: Checkout code
uses: actions/checkout@v3
- name: Run pre-commit
run: |
make build