Explorar el Código

Test and build

master
Panayiotis Lipiridis hace 4 años
padre
commit
e4626960ad
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. 5
    3
      .github/workflows/test.yml

+ 5
- 3
.github/workflows/test.yml Ver fichero

@@ -1,4 +1,4 @@
1
-name: Test
1
+name: Test & Build
2 2
 
3 3
 on:
4 4
   push:
@@ -18,5 +18,7 @@ jobs:
18 18
       - name: Install dependencies
19 19
         run: yarn
20 20
 
21
-      - name: Test
22
-        run: yarn test
21
+      - name: Test and Build
22
+        run: |
23
+          yarn test
24
+          yarn build

Loading…
Cancelar
Guardar