Skip to content

Testing commit by mightymax #6

Testing commit by mightymax

Testing commit by mightymax #6

Workflow file for this run

# For more information on running Github CI with Node: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: GitHub CI Tests
run-name: Testing commit by ${{ github.actor }}
# when pipeline is triggered
on:
# manual trigger workflow in UI
workflow_dispatch:
# commit on any branch
push:
# only trigger on branches, not on tags
branches: ['**']
# during pull request
pull_request:
# cancel any ongoing job in the branch if there is one more recent
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
install-build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- run: echo "Job was automatically triggered by a ${{ github.event_name }} event on ${{ github.ref }} - ${{ github.repository }}."
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check versions
run: echo "Node version:" && node -v && echo "NPM version:" && npm -v
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test
- run: echo "Job status ${{ job.status }}."