Skip to content

chore(deps-dev): bump @testing-library/react from 15.0.2 to 15.0.6 #261

chore(deps-dev): bump @testing-library/react from 15.0.2 to 15.0.6

chore(deps-dev): bump @testing-library/react from 15.0.2 to 15.0.6 #261

Workflow file for this run

name: test & release
on: push
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: 20
- run: npm ci
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npx playwright install-deps
- run: npx playwright install
# Ensure tests are not flaky
- run: npm run test
- run: npm run test
# ...
- run: npm run test -- --coverage
- uses: codecov/codecov-action@v4
- run: npm run build
- run: |
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}