diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 3eb1314..b9d4a4a 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -14,7 +14,7 @@ jobs: with: node-version: lts/* - name: Install dependencies - run: npm ci + run: npm i - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index 2369b4b..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Run Tests - -# on: [push, pull_request] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Setup Node.js - uses: actions/setup-node@master - with: - node-version: 12.x - - name: npm install - run: npm install - - name: Run server - run: npm run serve - - name: Run example map tests - run: npm run test