Skip to content

chore(deps): update dependency mkdirp to v3 #3437

chore(deps): update dependency mkdirp to v3

chore(deps): update dependency mkdirp to v3 #3437

Workflow file for this run

name: Node CI
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install --frozen-lockfile --check-files
env:
CI: true
- run: yarn build
env:
CI: true
- run: yarn test
env:
CI: true