Skip to content

feat: add automated testing and migrate CI/CD to Docker-based workflows #8

feat: add automated testing and migrate CI/CD to Docker-based workflows

feat: add automated testing and migrate CI/CD to Docker-based workflows #8

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
# Cancel in-progress runs for the same branch/PR when a new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: build and test
run: docker compose run --rm app npm test