@corva/create-app 0.58.0-0 → 0.59.0-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/create-app",
3
- "version": "0.58.0-0",
3
+ "version": "0.59.0-0",
4
4
  "private": false,
5
5
  "description": "Create an app to use it in CORVA.AI",
6
6
  "keywords": [
@@ -1,28 +1,16 @@
1
- name: Code checks (lint, tests, etc.)
1
+ name: Code Checks
2
2
 
3
3
  on:
4
- push:
4
+ pull_request:
5
5
  branches:
6
- - feat/*
7
- - fix/*
8
6
  - develop
9
- - release-fix/[0-9]+.[0-9]+.[0-9]+
10
7
 
11
8
  jobs:
12
- code-checks:
9
+ Lint-and-Test:
13
10
  runs-on: ubuntu-latest
14
11
  steps:
15
- - uses: actions/checkout@v2
16
- - uses: actions/setup-node@v2
17
- with:
18
- node-version: 16
19
- cache: 'yarn'
20
-
21
- - name: Install dependencies
22
- run: yarn
23
12
 
24
- - name: Run linter
25
- run: yarn lint
26
-
27
- - name: Run tests
28
- run: yarn coverage
13
+ - name: 'Lint and test'
14
+ uses: corva-ai/gh-actions/shared-dc-workflows/lint-and-test@develop
15
+ with:
16
+ npm-token: ${{ secrets.CORVA_NPM_TOKEN }}