Bump tmp from 0.2.3 to 0.2.5 #2
Workflow file for this run
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: Pull request checks | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| pull_request: | |
| runs-on: windows-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| packages: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| registry-url: 'https://npm.pkg.github.com' | |
| - name: Create .npmrc file | |
| run: | | |
| touch .npmrc | |
| echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc | |
| echo //npm.pkg.github.com/:_authToken=${{ secrets.PERSONAL_ACCESS_TOKEN }} >> .npmrc | |
| echo "always-auth=true" >> .npmrc | |
| - name: Install dependencies | |
| run: npm run init:ci | |
| - name: Run TypeScript compiler | |
| run: npm run type-check | |
| - name: Run Prettier | |
| run: npm run format | |
| - name: Run Eslint | |
| run: npm run lint | |
| - name: Run tests | |
| run: npm run test:cov | |
| - name: Find deadcode | |
| run: npm run find-deadcode | |
| - name: Run report coverage | |
| if: always() | |
| uses: davelosert/vitest-coverage-report-action@v2 | |
| - name: SonarCloud Scan | |
| uses: SonarSource/sonarcloud-github-action@master | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |