fix(deps): update dependency element-plus to v2.8.7 #504
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 test pack | |
on: | |
push: | |
branches: [develop, release/*] | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
id: pnpm-install | |
with: | |
version: latest | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Build | |
run: pnpm build | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
- name: Pack and upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: crosssync-test-pack | |
path: dist/ # this will pack automatically, so no other packs needed | |
retention-days: 7 |