Skip to content

Added Fabform to the tools section (#172) #226

Added Fabform to the tools section (#172)

Added Fabform to the tools section (#172) #226

Workflow file for this run

name: ci
"on":
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- name: Checkout πŸ›Ž
id: checkout
uses: actions/checkout@master
- name: Setup node env πŸ—
id: setup-node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache dependencies πŸ“¦
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
id: install-npm-dependencies
run: npm install
- name: Run the linter πŸ‘€
id: run-lint
run: npm run lint