Chore add docs state and create ts interface for plugins #75
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: Test | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set CHROME_PATH | |
| run: echo "CHROME_PATH=/ms-playwright/chrome-linux/chrome" >> $GITHUB_ENV | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node-env | |
| - name: Run ESLint checks | |
| run: npm run-script lint | |
| - name: Build | |
| run: npm run-script build | |
| - name: Run unit tests | |
| run: npm run-script test |