Bump @babel/traverse from 7.18.6 to 7.23.2 #1813
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: Unit Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
unit_tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Cache | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# Setup | |
- name: Install snappy dep | |
run: sudo apt-get install libsnappy-dev | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Set up Nodejs 16 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Set up ruby 2.6 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.6' | |
- name: Install virtualenv | |
run: pip install virtualenv | |
- name: Install dependencies | |
run: make setup | |
# Run Tests | |
- name: CloudFormation unit tests | |
run: make test-cfn | |
- name: Backend unit tests | |
run: make test-ci | |
env: | |
AWS_DEFAULT_REGION: eu-west-1 | |
- name: Frontend unit tests | |
run: make test-frontend | |
- name: Upload unit test coverage reports to Codecov | |
uses: codecov/codecov-action@v1 |