We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 494c79e commit ef1c2e0Copy full SHA for ef1c2e0
.github/workflows/main.yml
@@ -4,6 +4,20 @@ on:
4
push: { branches: [master] }
5
6
jobs:
7
+ tests:
8
+ name: Tests
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - uses: actions/setup-node@v1
13
+ with:
14
+ node-version: 12.x
15
+ - run: yarn
16
+ - run: yarn lint
17
+ - run: yarn test
18
+ - run: yarn build || { echo "build command should always succeed" ; exit 61; }
19
+ - run: yarn build --quiet && git diff --quiet action || { echo "action should be auto generated" ; exit 62; }
20
+
21
requestManualActivationFile:
22
name: Request manual activation file 🔑
23
runs-on: ubuntu-latest
0 commit comments