refact(auth): login password with encode #180
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: Npm Build | |
on: [ push ] | |
jobs: | |
build-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' # 替换为你需要的 Node.js 版本号 | |
- name: Copy env files | |
run: cp .env.example .env.development | |
- name: Install dependencies | |
run: npm i --force | |
- name: Build | |
run: npm run build |