Skip to content

fix(auth): 默认使用 account 域名并收敛 web 部署 issuer #6

fix(auth): 默认使用 account 域名并收敛 web 部署 issuer

fix(auth): 默认使用 account 域名并收敛 web 部署 issuer #6

Workflow file for this run

name: install-smoke
on:
pull_request:
push:
branches:
- main
- develop
workflow_dispatch:
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
scope: "@leeguoo"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm ci
- name: Build web app
run: npm --workspace @paste/web run build