Update dependency eslint-plugin-n to v17 (#964) #394
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: Deploy | |
on: | |
push: | |
branches: | |
- master | |
- main | |
env: | |
PNPM_VERSION: 8.15.8 | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build addon | |
run: pnpm run build:addon | |
- name: Build app 🔧 | |
run: pnpm build:test-app | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: packages/test-app/dist |