Skip to content

chore(deps): bump micromatch from 4.0.5 to 4.0.8 #34

chore(deps): bump micromatch from 4.0.5 to 4.0.8

chore(deps): bump micromatch from 4.0.5 to 4.0.8 #34

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node environment
uses: actions/setup-node@v4
with:
node-version: '18.17.0'
cache: 'yarn'
cache-dependency-path: |
.yarn
yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn nx run-many --target=lint
- name: Type check
run: yarn nx run-many --target=type-check
- name: Test
run: yarn nx run-many --target=test
- name: Build
run: yarn nx run-many --target=build