feat: Updated .github/workflows/main.yml #38
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: GitHub Actions | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
- name: setup Python | ||
uses: actions/setup-python@v2 | ||
- name: Run pnpm install | ||
run: pnpm install with: | ||
node-version: '14' | ||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
- name: Setup pnpm | ||
run: pnpm setup |