Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

chore(deps): bump react-router-dom from 6.18.0 to 6.19.0 #2664

chore(deps): bump react-router-dom from 6.18.0 to 6.19.0

chore(deps): bump react-router-dom from 6.18.0 to 6.19.0 #2664

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-license-lines:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Check License Lines
uses: kt3k/[email protected]
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- run: yarn lint
- run: yarn test
all:
# This job ensures that all jobs above (now we have just build) are successful.
needs: [check-license-lines, build]
runs-on: ubuntu-latest
steps:
- run: echo Success