fix: [#2344] Resolve every var() in a value, not only the first one #2206
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: Pull request | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22, 24] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| - name: Cache turbo | |
| uses: actions/cache@v4 | |
| id: cache-turbo | |
| with: | |
| path: .turbo | |
| key: turbo-${{ github.ref_name }}-${{ github.sha }} | |
| restore-keys: | | |
| turbo-${{ github.ref_name }} | |
| - name: Restore turbo cache from master | |
| if: steps.cache-turbo.outputs.cache-hit != 'true' | |
| uses: actions/cache/restore@v3 | |
| with: | |
| path: .turbo | |
| key: turbo-master | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Compile package | |
| run: npm run compile | |
| - name: Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test |