Implemented password reset. #21
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: Build Vue3 Template | |
on: | |
push: | |
branches: | |
- main | |
- v2 | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Vue3 Template | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Build for Production | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
- name: Run Tests & Coverage | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: test |