Skip to content

Backport Sass from upstream #1969

Backport Sass from upstream

Backport Sass from upstream #1969

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "!dependabot/**"
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 20
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE }}
cache: npm
- run: java -version
- name: Install npm dependencies
run: npm ci
- name: Build and test docs
run: npm test
- name: Upload docs
uses: actions/upload-pages-artifact@v3
if: github.repository == 'twbs/blog' && github.ref == 'refs/heads/main'
deploy:
runs-on: ubuntu-latest
needs: test
if: github.repository == 'twbs/blog' && github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4