Skip to content

qstommyshu is testing πŸš€ #30

qstommyshu is testing πŸš€

qstommyshu is testing πŸš€ #30

name: Action-Test-Demo
run-name: ${{ github.actor }} is testing πŸš€
on:
push:
branches:
- main
- develop
jobs:
APP-Test:
name: APP-Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/client/src
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
# Backend-Test:
# name: Backend-Test
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.11", "3.12"]
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install python dependencies
# run: pip install -r requirements.txt
# - name: Run pytest
# run: pytest
# env:
# PYTHONPATH: src/back