8000 Error fixed · rudSarkar/github-ci-learn@d4a1dd6 · GitHub
[go: up one dir, main page]

Skip to content

Testing the newer version CI #4

Testing the newer version CI

Testing the newer version CI #4

Workflow file for this run

name: Node.js CI
on:
# Trigger when a new pull request in main branch
pull_request:
branches:
- main
jobs:
checkout_code:
name: Checkout Code
uses: ./.github/workflows/checkout_code.yml
setup_node:
name: Installing Node.js
uses: ./.github/workflows/setup_node.yml
install_packages:
name: Installing Node.js Packages
uses: ./.github/workflows/install_packages.yml
run_test:
name: Run Test Case in Node.js Application
uses: ./.github/workflows/run_test.yml
0