Skip to content

0.8.0

0.8.0 #168

Workflow file for this run

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'