Skip to content

build(deps): bump minimatch from 3.1.2 to 3.1.3 (#213) #181

build(deps): bump minimatch from 3.1.2 to 3.1.3 (#213)

build(deps): bump minimatch from 3.1.2 to 3.1.3 (#213) #181

Workflow file for this run

name: 'CI'
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 'Install Node'
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: 'Install Deps'
run: yarn install --immutable
- name: 'Build'
run: yarn build
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 'Install Node'
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: '.nvmrc'
- name: 'Install Deps'
run: yarn install --immutable
- name: 'Lint'
run: yarn lint
- name: 'Typecheck'
run: yarn typecheck
- name: 'Test'
run: yarn test