chore(deps): bump send and express in /sample #23
Workflow file for this run
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: Pull Request | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test_pull_request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout repository | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
name: Setup Node.JS | |
- run: npm ci | |
name: Install packages | |
- run: npm run build | |
name: Compile library | |
- run: npm run test | |
name: Run unit tests | |
- run: npm run test:integration | |
name: Run integration test |