refactor(deps): update dependencies (non-major) #544
Workflow file for this run
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] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 | |
| with: | |
| cache: pnpm | |
| node-version: lts/* | |
| - run: pnpm install --frozen-lockfile | |
| - name: Lint (plugin) | |
| run: pnpm --filter eslint-plugin-pulumi lint | |
| - name: Test (plugin) | |
| run: pnpm --filter eslint-plugin-pulumi test | |
| - name: Build (plugin) | |
| run: pnpm --filter eslint-plugin-pulumi build | |
| - name: Lint (test-playground) | |
| # TODO: improve this | |
| run: | | |
| pnpm --filter test-playground lint || true |