Skip to content

chore(deps): bump micromatch from 4.0.7 to 4.0.8 #574

chore(deps): bump micromatch from 4.0.7 to 4.0.8

chore(deps): bump micromatch from 4.0.7 to 4.0.8 #574

Workflow file for this run

name: Lint, Test & Coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
coverage:
runs-on: ubuntu-latest
concurrency: ci-test-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js with Yarn cache
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests