0.8.0 #157
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
on: ['pull_request'] | |
name: Test PR | |
jobs: | |
build: | |
name: Test PR | |
runs-on: ubuntu-latest | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: write | |
pull-requests: write | |
packages: read | |
checks: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup 🛠️ | |
uses: ./.github/actions/setup | |
- name: PREPARE TEST | |
run: | | |
pnpm install | |
pnpm run lint | |
- name: Report Coverage for iris-web-rtc 🟢 | |
uses: ArtiomTr/jest-coverage-report-action@v2 | |
with: | |
custom-title: Coverage report for iris-web-rtc | |
package-manager: pnpm | |
working-directory: './packages/rtc' |