fix: blog css config error #237
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
# This workflow will do a clean installation of node dependencies, cache/restore them, | |
# build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: nodejs-ci | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
paths: | |
- "nodejs-tools/**" | |
pull_request: | |
paths: | |
- "nodejs-tools/**" | |
jobs: | |
nodejs-ci: | |
# Change to ubuntu-latest once the latest version points to 24 or above | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
working-directory: ./nodejs-tools | |
steps: | |
- uses: actions/checkout@v3 | |
# install deps | |
- run: npm install | |
# Run lint tools | |
- run: npm run lint | |
# Build the project | |
- run: npm run build | |
# Test the project | |
- run: npm run test |