chore(deps-dev): bump the dependencies group with 6 updates (#95) #127
This file contains hidden or 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: validation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| validation: | |
| name: Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| with: | |
| fetch-depth: 0 | |
| - name: Select Node Version | |
| uses: svierk/get-node-version@main | |
| - name: Install Dependencies | |
| run: npm install --ignore-scripts | |
| - name: Check Prettier | |
| run: npm run prettier | |
| - name: Check ESLint | |
| run: npm run lint:sonar | |
| - name: LWC Unit Tests | |
| run: npm run test:unit:coverage | |
| - name: Install SF CLI | |
| uses: svierk/sfdx-cli-setup@main | |
| - name: Salesforce Org Login | |
| uses: svierk/sfdx-login@main | |
| with: | |
| client-id: ${{ secrets.SFDX_CONSUMER_KEY }} | |
| jwt-secret-key: ${{ secrets.SFDX_JWT_SECRET_KEY }} | |
| username: ${{ secrets.SFDX_USERNAME }} | |
| - name: Deploy Metadata | |
| run: sf project deploy start | |
| - name: Apex Unit Tests | |
| run: sf apex run test --test-level=RunLocalTests --code-coverage --result-format=human -w 30 -d ./tests/apex --detailed-coverage | |
| - name: SonarCloud Scan | |
| uses: SonarSource/sonarqube-scan-action@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| - name: Codecov Coverage Upload | |
| uses: codecov/codecov-action@main | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |