created first structure of cv-jedi-minimalist and his header section #348
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuos Integration workflow | |
on: pull_request | |
env: | |
HUSKY: 0 | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install | |
run: npm ci | |
- name: Check types | |
run: npm run type-check | |
- name: Tests | |
run: npm test |