That's not an output anymore #3
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: Publish | |
| on: | |
| push: | |
| paths: | |
| - "packages/rollup-plugin-gettext/**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| - name: Install packages | |
| run: | | |
| apt-get install gettext | |
| cd packages/rollup-plugin-gettext | |
| pnpm install | |
| - name: Build | |
| run: | | |
| cd packages/rollup-plugin-gettext | |
| make build | |
| - name: Test | |
| run: | | |
| cd packages/rollup-plugin-gettext | |
| make test |