build(deps): bump @types/node from 15.0.2 to 20.11.17 #393
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.13.2 | |
- name: Install | |
run: make install | |
- name: Run Mongo | |
run: | | |
docker run -d --rm --name mongo -p 27017:27017 mongo | |
docker ps -a | |
- name: Test | |
run: yarn test --coverage | |
env: | |
CI: true | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |