Bump @types/react from 18.3.3 to 18.3.5 in the react group #424
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: ci | |
on: | |
push: | |
branches: [main] | |
tags: ['v*'] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.tmp | |
.tmp | |
key: ${{ runner.os }}-connect-playwright-es-ci-${{ hashFiles('turbo.json') }} | |
restore-keys: | | |
${{ runner.os }}-connect-playwright-es-ci- | |
- name: Install dependencies | |
run: npm ci | |
- name: Run CI | |
run: npm run all | |
- name: Check Diff | |
id: checkdiff | |
run: | | |
[[ -z $(git status --porcelain | tee /dev/stderr) ]] || exit 1 | |