Added Password Visibility Toggle #243
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: Pull Request | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build Package | |
run: pnpm build | |
- name: Compress build | |
run: pnpm package | |
- name: Archive compressed build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: dist/build.tar |