Files
birdspotter/.gitea/workflows/gitea-ci.yml
makew 4d65d36b73
Some checks failed
Build And Test / build (push) Failing after 1m37s
Build And Test / publish (push) Has been cancelled
ci test poistettu
2026-03-21 18:31:05 +02:00

44 lines
1.2 KiB
YAML

#
# .gitea/gitea-ci.yaml
#
name: Build And Test
run-name: ${{ gitea.actor }} is runs ci pipeline
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: https://github.com/actions/checkout@v4
- name: Use Node.js
uses: https://github.com/actions/setup-node@v3
with:
node-version: '18.17'
- run: npm ci
- run: npm run lint
# - run: npm run test
- run: npm run build:prod
env:
NODE_OPTIONS: --max_old_space_size=4096
publish:
runs-on: cth-ubuntu-latest
needs: build
if: gitea.ref == 'refs/heads/main'
steps:
- uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
with:
config-inline: |
[registry."gitea.paddington.fi"]
http = true
insecure = true
- name: Build and push Docker image
uses: https://github.com/docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: "gitea.paddington.fi/make/birdspotter:${{gitea.sha}},gitea.paddington.fi/make/birdspotter:latest"