This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
feat: add tokenExpiredTime #8
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 | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: ['ubuntu-latest'] | |
node: [18, 20] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- name: 📦️ Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🚧 Setup project | |
run: pnpm dev:prepare | |
- name: 🚨 Lint code | |
run: pnpm lint | |
- name: 🔧 Test build module | |
run: pnpm prepack |