forked from eclipse-sw360/sw360-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1160d12
commit 759f402
Showing
1 changed file
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
# ----------------------------------------------------------------------------- | ||
# Copyright (C) TOSHIBA CORPORATION, 2024. Part of the SW360 Frontend Project. | ||
# Copyright (C) Toshiba Software Development (Vietnam) Co., Ltd., 2024. Part of the SW360 Frontend Project. | ||
# | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# ----------------------------------------------------------------------------- | ||
|
||
name: SW360-Frontend Build and Automation Test | ||
|
||
name: CI | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but not only for the "main" branch | ||
push: | ||
branches: [ "test/ci-cypress" ] | ||
pull_request: | ||
branches: [ "test/ci-cypress" ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
permissions: write-all | ||
|
@@ -19,21 +26,16 @@ env: | |
COUCHDB_USER: admin | ||
COUCHDB_PASSWORD: password | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
|
||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
# - uses: webiny/[email protected] | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
# uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
ssh-key: ${{ secrets.SUBMODULE_ACCESS_TOKEN }} | ||
|