Merge pull request #372 from agileplanning-io/changeset-release/main #1160
Workflow file for this run
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
name: Build | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm test:cov | |
- name: Upload coverage reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage_reports | |
path: ./**/coverage/** | |
sonarcloud: | |
name: SonarQube Cloud | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- name: Download coverage reports | |
uses: actions/download-artifact@v4 | |
with: | |
name: coverage_reports | |
- name: SonarQube Cloud 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 }} | |
test-e2e: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: apps/api | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm test:e2e |