Skip to content

chore(deps-dev): bump eslint-plugin-react from 7.33.2 to 7.34.2 #184

chore(deps-dev): bump eslint-plugin-react from 7.33.2 to 7.34.2

chore(deps-dev): bump eslint-plugin-react from 7.33.2 to 7.34.2 #184

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
jobs:
Build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 7
- uses: actions/setup-node@v4
with:
node-version: 18
- run: |
pnpm install
pnpm --filter=avivator build
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 7
- uses: actions/setup-node@v4
with:
node-version: 18
- run: |
pnpm install
pnpm lint
Test:
runs-on: ubuntu-20.04
env:
DISPLAY: :0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: pnpm/action-setup@v3
id: pnpm-install
with:
version: 7
run_install: true
- name: Setup xvf (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get install -y xvfb
# start xvfb in the background
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 &
- run: pnpm test