Skip to content

Bump stylelint from 15.6.0 to 15.10.1 (#34) #8

Bump stylelint from 15.6.0 to 15.10.1 (#34)

Bump stylelint from 15.6.0 to 15.10.1 (#34) #8

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