Skip to content

Wip/alphafold coloring #48

Wip/alphafold coloring

Wip/alphafold coloring #48

Workflow file for this run

name: Build and test
on:
workflow_dispatch:
push:
branches: [main, master, dev]
pull_request:
branches: [main, master, dev]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- run: |
echo "TAG=test" >> $GITHUB_ENV
- name: Config tag for main
if: ${{ github.ref == 'refs/heads/main' }}
run: |
echo "TAG=stable" >> $GITHUB_ENV
- name: Config tag for dev
if: ${{ github.ref == 'refs/heads/dev' }}
run: |
echo "TAG=latest" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run tests
run: npm run test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30