Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

feat: add tokenExpiredTime #8

feat: add tokenExpiredTime

feat: add tokenExpiredTime #8

Workflow file for this run

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