Skip to content

fix Github action #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions .github/main-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
1 change: 0 additions & 1 deletion .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down