diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-10-01 20:22:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-01 20:22:09 -0400 |
| commit | 58ec93a773905134ae16de27be42bb8fd3976db5 (patch) | |
| tree | 052f17fd749b9678cf192cf7bbe3a24a1e3a3d08 /.github/workflows/CI.yml | |
| parent | 1de98c5f13ed84c7952d4a305d53dde08396d60e (diff) | |
| download | chine-projet-58ec93a773905134ae16de27be42bb8fd3976db5.tar.gz chine-projet-58ec93a773905134ae16de27be42bb8fd3976db5.tar.bz2 chine-projet-58ec93a773905134ae16de27be42bb8fd3976db5.zip | |
Delete CI.yml
Diffstat (limited to '.github/workflows/CI.yml')
| -rw-r--r-- | .github/workflows/CI.yml | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 7faea9e..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,54 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a job called "integration" - integration: - # A strategy that defines different variations of an environment to run each job in. - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - node: [12] - # The runners that the job will run on - runs-on: ${{ matrix.os }} - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - - name: Setup Node.js environment - uses: actions/setup-node@v1.4.3 - with: - node-version: ${{ matrix.node }} - - - name: Checkout master branch - uses: actions/checkout@v2 - - - name: Cache node_modules - uses: actions/cache@v2.1.0 - with: - # A list of files, directories, and wildcard patterns to cache and restore - path: node_modules - # An explicit key for restoring and saving the cache - key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }} - - - name: Install dependencies - if: steps.cache.outputs.cache-hit != 'true' - run: npm install - - - name: Run ESLint - run: npm run lint - - - name: Run unit tests - run: npm run test:unit - - - name: Code coverage - uses: codecov/codecov-action@v1.0.12 |
