Fix: allow current element to be the selectable target by default #2100
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: Tests | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the dev branch | |
pull_request: | |
branches-ignore: | |
- 'v*/main' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
NODE_OPTIONS: --max_old_space_size=16384 | |
# This workflow contains two jobs called "test" and "build" and runs them in parallel | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm install | |
- run: npm run lint | |
- name: Install Playwright dependencies | |
run: npx playwright install --with-deps | |
- run: npm run test | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache build setup | |
uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache | |
key: ${{ runner.os }}-cache-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-cache- | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm install | |
- run: npm run build:prod |