Skip to content

Bump eslint-plugin-react from 7.35.0 to 7.36.1 in /website #173

Bump eslint-plugin-react from 7.35.0 to 7.36.1 in /website

Bump eslint-plugin-react from 7.35.0 to 7.36.1 in /website #173

Workflow file for this run

name: Test deployment
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/test-deploy.yml"
- "website/**"
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./website
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: website/package-lock.json
- name: Install dependencies
run: npm ci
- name: Test build website
run: npm run build