Skip to content

Merge pull request #22 from Iank-code/documentation #20

Merge pull request #22 from Iank-code/documentation

Merge pull request #22 from Iank-code/documentation #20

Workflow file for this run

name: Validate Project
on:
push:
branches:
- Development
- Production
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js 20.x
uses: actions/setup-node@v2
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm install
- name: Linting
run: npm run lint
- name: Testing
run: npm run test