diff --git a/.github/main-workflow.yml b/.github/main-workflow.yml index 32b66a0..84a66f8 100644 --- a/.github/main-workflow.yml +++ b/.github/main-workflow.yml @@ -22,14 +22,10 @@ jobs: uses: actions/checkout@v3 - name: Install Dependencies - run: | - cd api - npm ci + run: npm ci - name: Code Linting - run: | - cd api - npm run lint + run: npm run lint unit-test: name: Unit test runs-on: ubuntu-latest @@ -43,11 +39,7 @@ jobs: uses: actions/checkout@v3 - name: Install Dependencies - run: | - cd api - npm ci + run: npm ci - name: Test - run: | - cd api - npm run test + run: npm run test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 06aa5e8..0000000 --- a/.travis.yml +++ /dev/null @@ -1 +0,0 @@ -{ 'language': 'node_js', 'node_js': '18', 'script': ['npm run lint'] } diff --git a/README.md b/README.md index 43ccbf2..332ccd2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Typescript Express.js Template -[![Build Status](https://travis-ci.org/tuanlc/typescript-expressjs-template.svg?branch=master)](https://travis-ci.org/tuanlc/typescript-expressjs-template) - The main purpose of this repository is to quickly create a template for Resful project which uses Typescript and Express.js framework. I will try to keep this as up-to-date as possible, but community contributions and recommendations for improvements are encouraged and will be most welcome.