Skip to content

build(deps): bump braces from 3.0.2 to 3.0.3 #104

build(deps): bump braces from 3.0.2 to 3.0.3

build(deps): bump braces from 3.0.2 to 3.0.3 #104

Workflow file for this run

name: Quality Check
on:
push:
paths-ignore:
- "README.md"
- "LICENSE"
- ".github/workflows/build.yml"
jobs:
job:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.19.1
cache: "yarn" # caches the yarn cache folder not node_modules
- name: Prepare
run: yarn install --frozen-lockfile
- name: Type Check
run: yarn type-check
- name: Lint Check
run: yarn lint