Skip to content

fix: Change the waiting time for restart to retry 1200 times. #11

fix: Change the waiting time for restart to retry 1200 times.

fix: Change the waiting time for restart to retry 1200 times. #11

Workflow file for this run

name: 'TestPublish'
on:
pull_request:
push:
tags:
- 'v*'
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Run Lint
run: npm run lint
Test:
runs-on: macos-latest
needs: Lint
env:
GITHUB_CI: true
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
- name: Setup Android SDK
uses: amyu/[email protected]
- name: Run tests 👩🏽‍💻
run: npm run test
PublishGithub:
runs-on: ubuntu-latest
needs: Test
if: startsWith(github.ref, 'refs/tags/v')
name: Publish Github Package
permissions:
contents: read
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
registry-url: https://npm.pkg.github.com/
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm build
- run: npm pkg set publishConfig.registry=https://npm.pkg.github.com
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
PublishNpm:
runs-on: ubuntu-latest
needs: Test
if: startsWith(github.ref, 'refs/tags/v')
name: Publish Npm Package
permissions:
id-token: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
registry-url: https://registry.npmjs.org
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm build
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "[email protected]"
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true