fix(PLAY-1164): track Flowplayer component feature adoption event #12
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: pr | |
| # Triggers the workflow on push or pull request events | |
| on: [pull_request] | |
| jobs: | |
| test-types: | |
| runs-on: ubuntu-latest | |
| name: run typespec | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Find yarn cache | |
| id: yarn-cache-path | |
| run: echo "::set-output name=dir::$(yarn cache dir)" | |
| - name: Restore cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.yarn-cache-path.outputs.dir }} | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: yarn install | |
| run: yarn install --immutable | |
| - name: build | |
| run: yarn build | |
| - name: test typespec | |
| run: yarn test:dts |