chore(deps): update dependency @types/node to v22 #379
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: test-using-docker | |
on: | |
push: | |
branches: | |
- '**' | |
# pull_request: | |
# branches: | |
# - '**' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
TZ: UTC | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
smh: | |
image: yutak23/serverless-mysql-http:latest | |
env: | |
MYSQL_DATABASE: sample_db | |
MYSQL_HOST: mysql | |
ports: | |
- 3000:6000 | |
- 3443:6443 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Initialize database | |
# we can use mysql service as localhost(https://docs.github.com/en/actions/using-containerized-services/about-service-containers#running-jobs-on-the-runner-machine) | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y mysql-client | |
mysql -h 127.0.0.1 -u root < tests/sql/1_schema.sql | |
mysql -h 127.0.0.1 -u root < tests/sql/2_data.sql | |
- name: Add hosts to /etc/hosts | |
run: sudo echo "127.0.0.1 http-localhost" | sudo tee -a /etc/hosts | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Wait for server | |
run: curl --retry 10 --retry-connrefused --retry-delay 5 --retry-max-time 60 http://localhost:3000/healthcheck | |
- name: Test | |
run: yarn test |