botserver/.forgejo/workflows/node.yaml
Rodrigo Rodriguez (Pragmatismo) 296365ea3f
Some checks failed
GBCI / build (push) Failing after 17s
fix(workflows): clean up node.yaml by removing unnecessary whitespace
2025-03-26 22:36:40 -03:00

33 lines
No EOL
627 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:
- name: Disable SSL verification (temporary)
run: git config --global http.sslVerify false
- 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