chore(deps): bump the css group across 1 directory with 2 updates #497
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: CI Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn test-ci | |
build: | |
# call the build job from the build.yaml workflow | |
uses: ./.github/workflows/build.yaml | |
with: | |
site-origin: https://ryojerryyu.github.io | |
site-base-path: /blog-next | |
# a CI build, skip uploading artifacts and fetch minimal history | |
is-ci-build: true |