Skip to content

Bump stylelint from 16.9.0 to 16.10.0 #46

Bump stylelint from 16.9.0 to 16.10.0

Bump stylelint from 16.9.0 to 16.10.0 #46

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: "npm"
- name: npm install, lint, and test
run: |
npm ci
npm run test --if-present
npm run lint --if-present
- name: npm build
env:
NODE_ENV: production
run: |
npm run build --if-present
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./dist"
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2