Skip to content

fix: functions/package.json & functions/package-lock.json to reduce v… #342

fix: functions/package.json & functions/package-lock.json to reduce v…

fix: functions/package.json & functions/package-lock.json to reduce v… #342

Workflow file for this run

name: Node CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- name: Lint
run: |
cd functions/
npm i
npm run lint
env:
CI: true