Skip to content

Commit

Permalink
Merge pull request #56 from sopra-fs24-group-09/dev
Browse files Browse the repository at this point in the history
Test the added github action workflow
  • Loading branch information
petertheprocess authored Apr 10, 2024
2 parents 2f6a5d2 + 844753b commit 26cf9be
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build_test_before_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and Test before merging

on:
pull_request:
branches:
- main
- dev
workflow_dispatch:

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- 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 }}

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: npm install
- run: npm run build

- name: Test
run: npm test

0 comments on commit 26cf9be

Please sign in to comment.