Skip to content
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