Merge pull request #1568 from HEIGE-PCloud/update-dependencies/twikoo… #1395
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| hugo_version: ["latest"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Hugo setup | |
| uses: peaceiris/actions-hugo@v3 | |
| with: | |
| hugo-version: ${{ matrix.hugo_version }} | |
| extended: true | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "latest" | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build |