Skip to content

Commit

Permalink
Merge pull request #2 from TusharRoy23/continuous-integration
Browse files Browse the repository at this point in the history
basic CI 1
  • Loading branch information
TusharRoy23 committed Apr 24, 2023
2 parents 0e16eaa + 752b060 commit f08cb17
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Basic CI

on: workflow_dispatch

jobs:
linting:
name: Linting the code base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: node_modules
key: node-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint Code
run: npm run test
- name: e2e test
run: npm run test:e2e
22 changes: 0 additions & 22 deletions .github/workflows/superlinter.yml

This file was deleted.

0 comments on commit f08cb17

Please sign in to comment.