[AUTO] Update native headers to rtc_4.3.2.155 #370
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: Unit test | |
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| persist-credentials: false | |
| # Setup .npmrc file to publish to GitHub Packages | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18.x' | |
| - name: Reconfigure git to use HTTP authentication | |
| run: > | |
| git config --global url."https://${{ secrets.GH_TOKEN }}@github.com/".insteadOf ssh://git@github.com/ | |
| - name: Run unit test | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| yarn | |
| yarn run test |