Skip to content

build: add basic nodejs app #2

build: add basic nodejs app

build: add basic nodejs app #2

Workflow file for this run

name: PR
on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
ci:
name: CI
uses: getdevopspro/github-actions/.github/workflows/pull-request.yml@v2.0.0
with:
version-package: package.json
version-package-lock: package-lock.json
pre-lint-command: npm ci --ignore-scripts; npm run lint
pre-test-unit-command: npm ci --ignore-scripts; npm run test