Skip to content

build(deps-dev): bump concurrently from 9.1.0 to 9.1.2 #725

build(deps-dev): bump concurrently from 9.1.0 to 9.1.2

build(deps-dev): bump concurrently from 9.1.0 to 9.1.2 #725

Workflow file for this run

name: 'Pull Request'
on: ['pull_request']
concurrency:
group: pr-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
name: Check lint
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node setup
uses: ./.github/actions/node-setup
- name: Run Linting
run: yarn run lint
test:
runs-on: ubuntu-latest
name: Check build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node setup
uses: ./.github/actions/node-setup
- name: Run Testing
run: yarn run test
build:
runs-on: ubuntu-latest
name: Check build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node setup
uses: ./.github/actions/node-setup
- name: Run Building
run: yarn run build