8000 updated ci to main · rudSarkar/github-ci-learn@e13a0b3 · GitHub
[go: up one dir, main page]

Skip to content

updated ci to main

updated ci to main #1

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@v1

Check failure on line 12 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
setup_node:
name: Installing Node.js
uses: ./github/workflows/setup_node.yml@v1
install_packages:
name: Installing Node.js Packages
uses: ./github/workflows/install_packages.yml@v1
run_test:
name: Run Test Case in Node.js Application
uses: ./github/workflows/run_test.yml@v1
0