Skip to content

Testing the newer version CI #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .github/workflows/ci.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Node.js CI

on:
# Trigger when a new pull request in main branch
pull_request:
branches:
- main

jobs:
checkout:
uses: ./.github/workflows/checkout_code.yml

install:
needs: checkout
uses: ./.github/workflows/setup_node.yml

install_package:
needs: [checkout, install]
uses: ./.github/workflows/install_packages.yml

run_testcase:
needs: [checkout, install, install_package]
uses: ./.github/workflows/run_test.yml
2 changes: 1 addition & 1 deletion .github/workflows/setup_node.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Setup Node.js
name: Installing Node.js

on:
workflow_call:
Expand Down
Loading