Skip to content

Placeholders like in the Networthy calculator #10

Placeholders like in the Networthy calculator

Placeholders like in the Networthy calculator #10

Workflow file for this run

name: Test and Build on PR
on:
pull_request:
paths-ignore:
- '.github/workflows/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Configure github
run: |
git config user.email "[email protected]"
git config user.name "GitHub Action"
git remote -v
git remote set-url origin [email protected]:${GITHUB_REPOSITORY}.git
git remote -v
- name: Install node packages
run: npm install
- name: BUILD
run: npm run build
- name: TEST
run: npm test