feat: Updated .github/workflows/main.yml #35
Workflow file for this run
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: Install pnpm command | ||
run: | | ||
curl -fsSL https://get.pnpm.io/install.sh | sh | ||
pnpm config set fetch-retry-mintimeout 10000 | ||
pnpm config set fetch-retry-maxtimeout 60000 | ||
name: GitHub Actions | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
cache: 'pnpm' |