Bump actions/checkout from 3.6.0 to 4.1.0 #886
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: CI | |
on: [pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: '16' | |
- name: Run `npm install` | |
run: npm install | |
- name: Run `npm run all` | |
run: npm run all | |
- name: Save PR number | |
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} | |
run: echo ${{ github.event.number }} > PR_NUMBER | |
- name: Upload artifact with `PR_NUMBER` | |
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: PR_NUMBER | |
path: PR_NUMBER | |
- name: Upload artifact with `dist` folder | |
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: dist | |
path: dist/ | |
- name: Upload artifact with `covertura.xml` | |
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: cobertura | |
path: coverage/cobertura-coverage.xml |