Bump react-dom from 19.2.1 to 19.2.2 (#471) #1283
This file contains hidden or 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: | |
| tags: | |
| - "*" | |
| branches: | |
| - "dev" | |
| pull_request: | |
| branches: | |
| - "*" | |
| concurrency: CI | |
| jobs: | |
| test-javascript: | |
| name: 'Test JavaScript' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies | |
| run: npm i | |
| - name: Run tests | |
| run: npm run lint | |
| env: | |
| CI: true | |
| automerge: | |
| name: Auto Merge Dependabot | |
| needs: [test-javascript] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - uses: fastify/github-action-merge-dependabot@v3.11.2 | |
| with: | |
| github-token: ${{secrets.PA_TOKEN}} |