Skip to content

⬆️ Bump simple-icons from 13.20.0 to 13.21.0 #1264

⬆️ Bump simple-icons from 13.20.0 to 13.21.0

⬆️ Bump simple-icons from 13.20.0 to 13.21.0 #1264

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
pull_request:
types:
- opened
- synchronize
- reopened
schedule:
- cron: '0 6 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Unit Test
run: pnpm test:unit
- name: Build
run: pnpm build