botserver/.forgejo/workflows/node.yaml
Rodrigo Rodriguez (Pragmatismo) 47debcf2e7
Some checks failed
GBCI / build (push) Failing after 1m26s
fix(workflows): change build runner from CI to gbo
2025-03-26 19:50:42 -03:00

30 lines
No EOL
535 B
YAML

name: GBCI
run: git config --global http.sslVerify false
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: gbo
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build project
run: npm run build --if-present