Skip to content

chore(deps-dev): bump concurrently from 5.0.1 to 8.2.1 #10

chore(deps-dev): bump concurrently from 5.0.1 to 8.2.1

chore(deps-dev): bump concurrently from 5.0.1 to 8.2.1 #10

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Clean install
run: npm ci
- name: Lint
run: npm run lint:ci
- name: Test
run: npm run test:ci