Skip to content

feat: remove analytics (fix #97) #58

feat: remove analytics (fix #97)

feat: remove analytics (fix #97) #58

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: |
npm i
env:
CI: true
- name: Lint JavaScript, JSON, and Markdown files
run: |
npm run lint
env:
CI: true