Bump fast-xml-parser in the npm_and_yarn group across 1 directory (#209) #1320
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: CI | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| tags: | |
| - "v*" | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| env: | |
| FORCE_COLOR: 2 | |
| NODE_LTS: 24 # used for linting and publishing | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ env.NODE_LTS }} | |
| cache: npm | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| test: | |
| name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| node: | |
| - 22 | |
| - 24 | |
| - 26 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - name: Install npm dependencies | |
| run: npm ci | |
| env: | |
| NODE_DEBUG: hugo-bin | |
| - name: Print hugo version | |
| run: npm exec hugo version | |
| - name: Run tests | |
| run: npm run test:ci | |
| test-extended: | |
| name: Node on ${{ matrix.os }} (Extended) | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| env: | |
| HUGO_BIN_BUILD_TAGS: extended | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ env.NODE_LTS }} | |
| cache: npm | |
| - name: Install npm dependencies | |
| run: npm ci | |
| env: | |
| NODE_DEBUG: hugo-bin | |
| - name: Print hugo version | |
| run: npm exec hugo version | |
| - name: Run tests | |
| run: npm run test:ci | |
| test-extended-withdeploy: | |
| name: Node on ${{ matrix.os }} (WithDeploy) | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| env: | |
| HUGO_BIN_BUILD_TAGS: extended,withdeploy | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ env.NODE_LTS }} | |
| cache: npm | |
| - name: Install npm dependencies | |
| run: npm ci | |
| env: | |
| NODE_DEBUG: hugo-bin | |
| - name: Print hugo version | |
| run: npm exec hugo version | |
| - name: Run tests | |
| run: npm run test:ci | |
| publish: | |
| name: Publish on npm | |
| # Workflow filename (ci.yml) and repo (fenneclab/hugo-bin) are matched against | |
| # npm's Trusted Publisher config for this package - renaming either breaks OIDC auth. | |
| if: github.repository == 'fenneclab/hugo-bin' && startsWith(github.ref, 'refs/tags/v') | |
| needs: [lint, test, test-extended, test-extended-withdeploy] | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| id-token: write # OIDC token for npm trusted publishing (provenance) | |
| contents: read | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ env.NODE_LTS }} | |
| registry-url: 'https://registry.npmjs.org' | |
| package-manager-cache: false | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Determine npm dist-tag | |
| id: npm-tag | |
| run: echo "tag=$(npm run --silent npm-tag)" >> "$GITHUB_OUTPUT" | |
| - name: Publish on npm | |
| env: | |
| NPM_TAG: ${{ steps.npm-tag.outputs.tag }} | |
| run: npm publish --provenance --access public --tag "$NPM_TAG" |