Skip to content

Bump micromatch from 4.0.4 to 4.0.8 #10

Bump micromatch from 4.0.4 to 4.0.8

Bump micromatch from 4.0.4 to 4.0.8 #10

Workflow file for this run

name: Build and Test NODE
on:
push:
-branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package.json') }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn generate-plugin-schema
- run: yarn test:ci