Skip to content

git commit -m "formatting issues" #3

git commit -m "formatting issues"

git commit -m "formatting issues" #3

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm install --frozen-lockfile
- run: npm run lint
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm install --frozen-lockfile
- run: npm run test