chore(deps): bump send and express #117
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- stage | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: NPM Tests | |
runs-on: ubuntu-latest | |
container: | |
image: node:20.16 | |
steps: | |
- uses: Chia-Network/actions/clean-workspace@main | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: npm install | |
run: npm install | |
- name: install global packages | |
run: npm i -g @babel/cli sequelize-cli cross-env | |
- name: npm tests | |
run: npm run test-ci |