gha: Add setup-node step

This commit is contained in:
peaceiris 2019-10-09 00:03:34 +09:00
parent 839eb279b0
commit 2012d01829

View file

@ -16,8 +16,13 @@ jobs:
with: with:
fetch-depth: 1 fetch-depth: 1
- name: setup node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm install
- name: Format check - name: Format check
run: npm run format:check run: npm run format:check