Skip to content

Commit

Permalink
CI style and formatting (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkim205 authored May 22, 2020
1 parent a1c770e commit fc2424e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/nodejs.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,25 @@ jobs:
run: |
yarn --frozen-lockfile
yarn dist --publish=never
style:

runs-on: macos-latest

strategy:
matrix:
node-version: [12.x]

steps:
- name: Checkout Git repository
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Check style
run: |
yarn --frozen-lockfile
yarn clean-check

0 comments on commit fc2424e

Please sign in to comment.