This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
Bump process-warning from 2.3.1 to 2.3.2 #183
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test suite | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install system dependencies | |
run: sudo apt-get install -y bash gcc g++ python3-dev zlib1g zlib1g-dev libjpeg-dev libssl-dev libffi-dev | |
- name: Install app dependencies | |
run: npm install | |
- name: Install Playwright Browser | |
run: npx playwright install --with-deps chrome | |
- name: Run tests | |
run: npm run test |