Bump @testing-library/jest-dom from 6.5.0 to 6.6.3 in the testing group across 1 directory #1073
Workflow file for this run
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: Deploy preview | |
on: | |
pull_request_target: null | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Use node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Build | |
run: | | |
npm ci && \ | |
node ./scripts/set-homepage.cjs /shlink-web-client/${GITHUB_HEAD_REF#refs/heads/} && \ | |
node --run build | |
- name: Deploy preview | |
uses: shlinkio/deploy-preview-action@v1.0.1 | |
with: | |
folder: build |