Feat/deploy GitHub Packages #7
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: PR Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.7.1 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- uses: jwalton/gh-find-current-pr@v1 | |
id: findPr | |
- name: jest coverage report | |
uses: ArtiomTr/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
prnumber: ${{ steps.findPr.outputs.number }} | |
- name: Check test status | |
id: test-status | |
run: echo "::set-output name=status::$(if grep -q 'Test failed' test-results.txt; then echo 'failure'; else echo 'success'; fi)" |