Skip to content

docs: Fix lint-staged link (#237) #349

docs: Fix lint-staged link (#237)

docs: Fix lint-staged link (#237) #349

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 18.x
steps:
- name: Set up Git
run: |
git config --global user.name "Mrm Bot"
git config --global user.email "${BOT_EMAIL}"
env:
BOT_EMAIL: ${{ secrets.BOT_EMAIL }}
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run bootstrap
- run: npm test