build(deps): bump micromatch from 4.0.5 to 4.0.8 (#161) #335
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*.*.*' | |
jobs: | |
build-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: yarn-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn --frozen-lockfile | |
- run: yarn setup-ci | |
- run: yarn type-check | |
- run: yarn lint | |
- run: yarn build | |
- run: yarn zip |