chore(deps): bump @aws-sdk/client-s3 from 3.367.0 to 3.379.1 #512
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: Run Tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
env: | |
DATABASE_URL: 'mysql://root:[email protected]:3306/sidekick_test' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: Set up MySQL | |
run: | | |
sudo /etc/init.d/mysql start | |
mysql -e 'CREATE DATABASE sidekick_test;' -uroot -proot | |
mysql -uroot -proot sidekick_test < src/helpers/schema.sql | |
mysql -uroot -proot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';" | |
mysql -uroot -proot -e "FLUSH PRIVILEGES;" | |
- run: yarn install | |
- run: yarn test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |