Merge pull request #152 from samchon/features/swagger #417
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: build | |
on: [push, pull_request] | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: Install Backend-Server | |
run: npm install | |
- name: Compile Program | |
run: npm run build | |
- name: Test Backend-Server | |
run: npm run test -- --include=fake |