🔥 移除不再需要的 axios-mock-adapter 依赖 #1241
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| - dev | |
| paths-ignore: | |
| - ".github/**" | |
| - ".gitignore" | |
| - "**.md" | |
| - "LICENSE" | |
| workflow_dispatch: | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| name: Build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - name: Package with Node | |
| env: | |
| CHROME_PEM: ${{ secrets.CHROME_PEM }} | |
| run: | | |
| mkdir dist | |
| echo "$CHROME_PEM" > ./dist/scriptcat.pem | |
| chmod 600 ./dist/scriptcat.pem | |
| npm ci | |
| npm run pack | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: production-artifacts | |
| path: | | |
| dist/*.crx | |
| dist/*.zip | |
| - name: Archive extension | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: chrome-extension | |
| path: | | |
| dist/ext/* | |
| - name: Archive Firefox extension | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: firefox-extension | |
| path: | | |
| dist/ext-firefox/* |