Replaced helpers by logitar-js. #36
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 # TODO(fpion): remove | |
pull_request: | |
branches: | |
- main | |
- v2 # TODO(fpion): remove | |
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: Install dependencies | |
run: npm clean-install | |
- name: Build for Production | |
run: npm run build | |
- name: Run Tests & Coverage | |
run: npm run test |