Skip to content

Commit

Permalink
Create format.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mistlog committed Jun 25, 2020
1 parent 392ef17 commit 105cf3f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/format.yml
@@ -0,0 +1,24 @@
name: format

on: [push]

jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run check:format
env:
CI: true

0 comments on commit 105cf3f

Please sign in to comment.