Skip to content

Bump the minor-and-patch group across 1 directory with 11 updates #12

Bump the minor-and-patch group across 1 directory with 11 updates

Bump the minor-and-patch group across 1 directory with 11 updates #12

Workflow file for this run

name: CI · Validate site
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: hacktoberfest-react/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: hacktoberfest-react
- name: Lint
run: npm run lint
working-directory: hacktoberfest-react
- name: Build site
env:
REPO_NAME: ${{ github.event.repository.name }}
run: npm run build -- --base=/${REPO_NAME}/
working-directory: hacktoberfest-react