chore(deps): bump postcss from 8.5.14 to 8.5.23 (#101) #399
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: main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release | |
| - develop | |
| permissions: | |
| contents: read | |
| jobs: | |
| publish: | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| # Use github runner instead of self-hosted as trusted publishing is only supported on github runners for now | |
| # https://docs.npmjs.com/trusted-publishers#limitations-and-future-improvements | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: "24" | |
| check-latest: true | |
| - run: npm install -g npm@11.12 | |
| - run: npm ci | |
| - name: Release | |
| run: npm run release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |