⬆️ update dependency #142
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: CI Test | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '**.ts' | |
- '**.json' | |
- '**.scss' | |
- '**.css' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '**.ts' | |
- '**.json' | |
- '**.scss' | |
- '**.css' | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- name: Build and Test | |
id: build | |
run: | | |
pnpm it | |
pnpm run build |