Skip to content

Feat(selectbox): mini #2604

Feat(selectbox): mini

Feat(selectbox): mini #2604

Workflow file for this run

name: Test check All libraries
on: [pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: 📥 Monorepo install
uses: ./.github/composite/prepare_node
- name: Get installed Playwright version
id: playwright-version
run: echo "::set-output name=version::$(pnpm list playwright | grep playwright | sed 's/.*@//' | tail -1)"
- uses: actions/cache@v3
id: playwright-cache
with:
path: "~/.cache/ms-playwright"
key: "${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}"
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright's dependencies
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Test
run: pnpm test