refactor(components/button): move back to top button to layout #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: periotable-ci | |
on: [push, pull_request] | |
jobs: | |
all: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [20] | |
threads: [4] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install Depedencies | |
run: pnpm i | |
- name: Lint code | |
run: make lint | |
- name: Typecheck code | |
run: make typecheck | |
- name: Generate prettier config | |
run: make format-generate-config | |
- name: Format Check | |
run: make format-check |