Build all overlays #4
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: Build all overlays | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Installing pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Installing Node.js 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Installing dependencies | |
run: pnpm install | |
- uses: nrwl/nx-set-shas@v3 | |
- name: Building all overlays | |
run: pnpm run build |