Skip to content

Bump micromatch from 4.0.5 to 4.0.8 (#39) #21

Bump micromatch from 4.0.5 to 4.0.8 (#39)

Bump micromatch from 4.0.5 to 4.0.8 (#39) #21

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
# workaround for dependabot PRs
pull_request:
branches:
- master
paths:
- package.json
- yarn.lock
jobs:
test:
name: Lint
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node_modules-v1-${{ hashFiles('.nvmrc') }}
restore-keys: |
${{ runner.os }}-node_modules-v1
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- run: yarn install
- run: yarn lint