Merge pull request #137 from VishalPawar1010/#136-Add-config-to-Chang… #151
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 and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Install dependencies | |
run: npm install | |
- name: Create test directory | |
run: mkdir test | |
- name: Create test file | |
run: echo "This is a test" > test/test.js | |
- name: Build project | |
run: npm run build -- --include=test | |
- name: Run tests | |
run: npm test |