ci(deps): bump node from 16.14.2-slim to 23.4.0-slim in /docker #1397
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: Application - Test | |
on: | |
push: | |
branches-ignore: [stable] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
app-test: | |
runs-on: ubuntu-latest | |
steps: | |
# Increase workspace space | |
- name: Remove docker image | |
run: | | |
docker image prune --force --all | |
- uses: actions/checkout@v4 | |
# Pull the latest image to build, and avoid caching pull-only images. | |
# (docker pull is faster than caching in most cases.) | |
- name: Pull Docker images | |
run: docker-compose -f .devcontainer/docker-compose.yml pull | |
# This step loads "node_modules" from the cache which contains the cache of Turborepo. | |
# The "node_modules" will be mounted with the source code when docker-compose up is executed. | |
- name: Load cache "node_modules" which includes cahce of Turborepo | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: | |
${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
- name: Start all DBs and middle | |
run: | | |
docker-compose -f .devcontainer/docker-compose.yml build --build-arg USER_UID=$(id -u) --build-arg USER_GID=$(id -g) | |
docker-compose -f .devcontainer/docker-compose.yml up -d | |
- name: Run test | |
run: | |
docker-compose -f .devcontainer/docker-compose.yml exec -T -- node bash -c 'yarn install && yarn test' | |
# [TODO] Coverage report |