chore(ci): 💚 Upgrade pnpm setup action #353
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: Backend Deno CI | |
on: [ push, pull_request ] | |
defaults: | |
run: | |
working-directory: ./backend-deno | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 📥 | |
uses: actions/[email protected] | |
- name: Run tests 🛃 | |
run: docker compose up --abort-on-container-exit | |
- name: Stop containers 🛑 | |
if: always() | |
run: docker compose down |