unreal-chat/.forgejo/workflows/ci.yaml
jusemon 4dd3902987
Some checks failed
CI / test (push) Failing after 13m16s
Actualizar .forgejo/workflows/ci.yaml
2025-04-15 09:00:35 -05:00

22 lines
550 B
YAML

name: CI
on: [push]
jobs:
test:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Installing dependencies
run: npm i
- name: Run security audit
run: |
echo "Running security audit check"
npx --yes better-npm-audit audit || {
echo "Security audit failed!"
exit 1
}
echo "Security audit passed!"