Skip to content

Merge pull request #315 from fractal-analytics-platform/fix-discard-c… #15

Merge pull request #315 from fractal-analytics-platform/fix-discard-c…

Merge pull request #315 from fractal-analytics-platform/fix-discard-c… #15

name: End-to-end tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
end_to_end_tests:
name: 'Node ${{ matrix.node-version }}'
runs-on: ubuntu-20.04
timeout-minutes: 10
strategy:
matrix:
node-version: ['16', '18', '20']
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm install
- name: Run playwright tests (not implemented)
run: echo "Not implemented"