build(deps): bump sass from 1.68.0 to 1.69.0 #1825
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous integration | |
on: | |
push: | |
branches: | |
- main | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: escemi-tech/[email protected] | |
with: | |
build: build:ci | |
checks: true | |
gh-release: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
environment: github-pages | |
needs: [checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: escemi-tech/[email protected] | |
with: | |
checkout: '{ "token": "${{ secrets.GH_PRIVATE_ACCESS_TOKEN }}" }' | |
build: build:deploy | |
- name: 🚀 Release to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v4 | |
with: | |
target_branch: gh-pages | |
build_dir: public | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PRIVATE_ACCESS_TOKEN }} | |
- name: 🔭 Check the site is up | |
uses: srt32/[email protected] | |
with: | |
url-to-hit: ${{ secrets.DEPLOY_URL }} | |
expected-statuses: "200" |