Skip to content

feat(checkbox): checkbox element and style for pages refactor #186

feat(checkbox): checkbox element and style for pages refactor

feat(checkbox): checkbox element and style for pages refactor #186

Workflow file for this run

name: Lint Test
on: pull_request
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
build:
name: Lint Test
runs-on: ubuntu-latest
steps:
- name: Checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install pnpm package manager
run: npm i pnpm@latest -g
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: Setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint