diff --git a/.github/workflows/nodejs.yml b/.github/workflows/build.yml similarity index 71% rename from .github/workflows/nodejs.yml rename to .github/workflows/build.yml index 309a5b4..f06c028 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/build.yml @@ -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 \ No newline at end of file