Skip to content

chore(deps): bump @sideway/formula from 3.0.0 to 3.0.1 in /website #106

chore(deps): bump @sideway/formula from 3.0.0 to 3.0.1 in /website

chore(deps): bump @sideway/formula from 3.0.0 to 3.0.1 in /website #106

Workflow file for this run

name: Lint Code Base
on: [push, pull_request]
env: # environment variables (available in any part of the action)
NODE_VERSION: 16
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps: # list of steps
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Dependencies
run: npm i
- name: Code Linting
run: npm run lint