Skip to content

Implement model switching using @ #163

Implement model switching using @

Implement model switching using @ #163

Workflow file for this run

name: Run Tests
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm install parcel-bundler
- run: npx playwright install
- name: Run tests
run: |
nohup parcel index.html > server.log 2>&1 &
# Run server in the background
# nohup npm run server > server.log 2>&1 &
# Wait for the server to start
sleep 10
export GITHUB_ACTIONS=true
npm run test
npm run test:mobile
- name: Upload server log
if: failure()
uses: actions/upload-artifact@v2
with:
name: server-log
path: server.log