Skip to content

Commit

Permalink
fix: Corriger la configuration de l'intégration continue.
Browse files Browse the repository at this point in the history
  • Loading branch information
regseb committed Mar 9, 2021
1 parent 7a1a510 commit d331f39
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ jobs:
- name: Setup Node.js 14
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: 14

- name: Checkout project
uses: actions/checkout@v2

- name: Install dependencies
run: npm ci
run: npm install

- name: Lint files
run: npm run lint

- name: Check types
run: npm run tsc
run: npm run tsc:lint
if: always()

test:
Expand All @@ -33,13 +33,13 @@ jobs:
- name: Setup Node.js 14
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: 14

- name: Checkout project
uses: actions/checkout@v2

- name: Install dependencies
run: npm ci
run: npm install

- name: Run tests
run: npm test
Expand All @@ -50,13 +50,13 @@ jobs:
- name: Setup Node.js 14
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: 14

- name: Checkout project
uses: actions/checkout@v2

- name: Install dependencies
run: npm ci
run: npm install

- name: Run tests
run: npm test
Expand Down

0 comments on commit d331f39

Please sign in to comment.