Files
node-js-test/.github/workflows/node.js.yml
T
admin 352a257b5f
Docker Deployment / docker (push) Failing after 21s
Node.js CI Test / build (push) Successful in 33s
Update .github/workflows/node.js.yml
2026-05-20 05:25:14 +00:00

32 lines
688 B
YAML

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
- run: npm ci
- run: npm run build --if-present
- run: npm test