We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beb81b8 commit ae5c20eCopy full SHA for ae5c20e
.github/workflows/test.yml
@@ -0,0 +1,16 @@
1
+name: Test
2
+on: ["push", "pull_request"]
3
+jobs:
4
+ test:
5
+ if: "!contains(github.event.head_commit.message, 'skip ci')"
6
+ name: Test
7
+ runs-on: ubuntu-18.04
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v1
11
+ - name: Setup Node.js
12
+ uses: actions/setup-node@v1
13
+ with:
14
+ node-version: 12
15
+ - name: Run Prettier Test
16
+ run: npx prettier --check "src/**/*.js"
0 commit comments