Skip to content

Bump postcss from 8.4.47 to 8.4.49 (#208) #367

Bump postcss from 8.4.47 to 8.4.49 (#208)

Bump postcss from 8.4.47 to 8.4.49 (#208) #367

Workflow file for this run

name: Build and deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
github-pages:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies and build
run: |
npm ci
npm run lint
npm run prettier
npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_branch: "gh-pages"
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"