Skip to content

update github-action-push-to-another-repository, set environment URL #47

update github-action-push-to-another-repository, set environment URL

update github-action-push-to-another-repository, set environment URL #47

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- experimental/**
- master
pull_request:
branches-ignore:
- experimental/**
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm install
- run: npm run test:coverage
- run: npm run build
- uses: SonarSource/sonarcloud-github-action@master
if: env.SONARCLOUD_TOKEN != null
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ env.SONARCLOUD_TOKEN }}