Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

#116: Update jest-puppeteer to latest #218

#116: Update jest-puppeteer to latest

#116: Update jest-puppeteer to latest #218

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
env:
NODE_VERSION: '18'
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install packages
run: npm install
- name: Run Unit Tests
run: npm run test:unit
- name: Run Integration Tests
run: npm run test:integration
- name: Run E2E Tests
run: npm run test:e2e