Skip to content

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

build(deps): bump braces from 3.0.2 to 3.0.3

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

Workflow file for this run

name: Node.js CI 🧪
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
cache-and-install:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
name: Node ${{ matrix.node-version }} sample
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Format and Check code
run: pnpm fc