Update README.md #1082
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
name: Build and Test | |
on: | |
pull_request: | |
branches: [main, 4.0] | |
push: | |
branches: [main, 4.0] | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Bootstrap | |
run: npm ci | |
# - name: Install Playwright Browsers | |
# run: npx playwright install --with-deps | |
- name: Build All Packages | |
run: npm run build -ws | |
- name: Test Packages | |
run: npm test -ws --if-present |