Skip to content

Bump postcss from 8.4.25 to 8.4.31 (#36) #10

Bump postcss from 8.4.25 to 8.4.31 (#36)

Bump postcss from 8.4.25 to 8.4.31 (#36) #10

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code 🛎️
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Run npm ci and build
run: |
npm ci
npm run build
- name: Deploy to gh-pages 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
clean: true
single-commit: true