Skip to content

Commit

Permalink
Merge pull request #36 from basics/beta
Browse files Browse the repository at this point in the history
Beta
  • Loading branch information
StephanGerbeth authored Sep 17, 2024
2 parents 5dd1727 + e487590 commit ac68d00
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 16 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ jobs:
install:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v4

- name: cache node_modules
uses: actions/cache@v4
id: cache
Expand Down Expand Up @@ -53,25 +55,28 @@ jobs:
semantic-version:
name: Semantic Release
needs: install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v4

- name: cache node_modules
uses: actions/cache@v4
id: cache
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}

- name: Versioning
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand All @@ -83,24 +88,24 @@ jobs:
sonarcloud:
name: SonarCloud
needs: semantic-version
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Download vitest code coverage results
uses: actions/download-artifact@v4
with:
name: vitest-code-coverage-report
path: ./coverage/
- name: check
run: cd coverage && find .

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
Expand Down
80 changes: 80 additions & 0 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Feature

on:
push:
branches:
- 'feature/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
install:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Install
strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v4

- name: cache node_modules
uses: actions/cache@v4
id: cache
with:
path: |
node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}

- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci

- name: Lint
run: npm run lint

- name: Vitest - Test & Coverage
run: npm run coverage

- name: Archive vitest code coverage results
uses: actions/upload-artifact@v4
with:
name: vitest-code-coverage-report
path: ./coverage/

sonarcloud:
name: SonarCloud
needs: install
strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Download vitest code coverage results
uses: actions/download-artifact@v4
with:
name: vitest-code-coverage-report
path: ./coverage/

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
21 changes: 13 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ jobs:
install:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v4

- name: cache node_modules
uses: actions/cache@v4
id: cache
Expand Down Expand Up @@ -53,25 +55,28 @@ jobs:
semantic-version:
name: Semantic Release
needs: install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v4

- name: cache node_modules
uses: actions/cache@v4
id: cache
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}

- name: Versioning
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand All @@ -83,24 +88,24 @@ jobs:
sonarcloud:
name: SonarCloud
needs: semantic-version
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [20]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Download vitest code coverage results
uses: actions/download-artifact@v4
with:
name: vitest-code-coverage-report
path: ./coverage/
- name: check
run: cd coverage && find .

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
Expand Down

0 comments on commit ac68d00

Please sign in to comment.