Skip to content

⬆️ Bump terminal-image from 2.0.0 to 3.0.0 #442

⬆️ Bump terminal-image from 2.0.0 to 3.0.0

⬆️ Bump terminal-image from 2.0.0 to 3.0.0 #442

Workflow file for this run

name: Tests
on: [pull_request, push, workflow_dispatch]
jobs:
checkout-and-run:
runs-on: macos-latest
strategy:
matrix:
node-version: [v18.0.0]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run tests
run: npm run test
timeout-minutes: 10