From 57033f3334a0b89167cec2264e125670a7c8a64d Mon Sep 17 00:00:00 2001 From: iCrawl Date: Sat, 24 Aug 2019 20:31:12 +0200 Subject: [PATCH] ci: add npm install steps --- .github/workflows/lint.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4d5a78390..b85aa8b6d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -name: ESLint, Typings, and Docs +name: Lint on: push: @@ -32,6 +32,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: 12 + - name: npm install + run: npm install - name: lint typings run: npm run lint:typings @@ -44,5 +46,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: 12 + - name: npm install + run: npm install - name: lint docs run: npm run docs:test