diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d65966..97012ee 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,24 +17,17 @@ jobs: uses: actions/checkout@v2 with: persist-credentials: false - + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: '18.x' - name: Install rsync run: sudo apt-get install rsync -y - - - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 - with: - version: 8 - run_install: true - - - name: pnpm i - run: pnpm i - - - name: Set Debug Environment Variable - run: echo "ACTIONS_RUNNER_DEBUG=true" >> $GITHUB_ENV - - - name: build - run: npx craco build + + - name: Install npm dependencies + run: npm install + - name: Run build task + run: set process.env.CI=false && npx craco build - name: Deploy to Server uses: easingthemes/ssh-deploy@v5.0.0