8000 Added name and changed job name · rudSarkar/github-ci-learn@b46012d · GitHub
[go: up one dir, main page]

Skip to content

Added a test case for not merging into main #14

Added a test case for not merging into main

Added a test case for not merging into main #14

Workflow file for this run

name: Node.js CI
on:
# Trigger when a new commit is pushed in main branch
pull_request:
branches:
- main
jobs:
build:
name: Run Tests
runs-on: ubuntu-latest
steps:
# checkout the code
- uses: actions/checkout@v2
# setup the nodejs environment
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm install
- run: npm run test
0