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

XYZ #94

Closed
wants to merge 2 commits into from
Closed

XYZ #94

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
44 changes: 0 additions & 44 deletions .github/workflows/cd-oidc.yaml

This file was deleted.

98 changes: 0 additions & 98 deletions .github/workflows/cd.yaml

This file was deleted.

64 changes: 26 additions & 38 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,44 @@
name: Continuous Integration Workflow

# This workflow is triggered whenever a new PR is created on the main branch
# Workflow Name
name: CI Workflow
# Event(s)
on:
pull_request:
branches:
- main
paths:
- 'web/**'
push:
branches:
- main
paths:
- 'web/**'

# Jobs (Stages)
jobs:

# Run unit tests to make sure everything is 👍
# 1st Job (Stage)
test:
name: 'Run unit tests'
name: "RUN UNIT TEST"
# Defaults
defaults:
run:
shell: bash
# Define the working directory for all run steps in the workflow
# Define the Working Directory for All RUN Steps in the Workflow
working-directory: ./web
# Specify the OS we want the workflow to run on
# OS
runs-on: ubuntu-latest
# Define the steps for this job
steps:
- uses: actions/checkout@v2
name: 'Checkout repository'

- name: 'Install Dependencies'
run: npm install

- name: 'Run Tests'
run: npm run test

# Run the linter to check for code style issues
- uses: actions/checkout@v4
name: "https://github.com/actions/checkout"
- name: "Install Dependencies"
run: npm install
- name: "RUN Tests"
run: npm run test
# 2nd Job (Stage)
lint:
name: 'Run linter'
name: "RUN LINTER"
defaults:
run:
shell: bash
# Define the working directory for all run steps in the workflow
# Define the Working Directory for All RUN Steps in the Workflow
working-directory: ./web
# OS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: 'Checkout repository'

- name: 'Install Dependencies'
run: npm install

- name: 'Run Linter'
run: npx standard -v
steps:
- uses: actions/checkout@v4
name: "https://github.com/actions/checkout"
- name: "Install Dependencies"
run: npm install
- name: "RUN Linter"
run: npx standard -v
66 changes: 0 additions & 66 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/interactions.yaml

This file was deleted.

Loading
Loading