Revert "upgrade language service next to 11.7.6 (#497)" #436
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: pr-builds | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: yarn | |
- name: yarn install | |
run: yarn install --immutable | |
- name: Check formatting | |
run: yarn format:check | |
- name: build | |
working-directory: package | |
run: yarn build | |
- name: Typecheck | |
run: yarn workspaces foreach -pv run ci:typecheck | |
- name: Install Playwright deps | |
run: yarn test:install | |
- name: test samples | |
run: yarn test:samples | |
- name: unit tests | |
working-directory: package | |
run: yarn test | |
- name: integration tests | |
working-directory: package | |
run: yarn test:integration | |
# https://playwright.dev/docs/ci-intro#html-report | |
- uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: playwright-report | |
path: package/playwright-report/ | |
retention-days: 30 |