Bump micromatch from 4.0.5 to 4.0.8 in the npm_and_yarn group across 1 directory #24
Workflow file for this run
This file contains 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: Continuous testing | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use node 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: c-hive/gha-yarn-cache@v2 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- run: yarn run lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use node 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: c-hive/gha-yarn-cache@v2 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- run: yarn run build | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use node 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: c-hive/gha-yarn-cache@v2 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- run: yarn run test |