feat: TRAC-366 audit and fix Stencil theme remote API calls for multi… #254
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: Build | |
| on: | |
| pull_request: | |
| branches: [ master, main, bodl ] | |
| push: | |
| branches: [ master, main, bodl ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [20.x, 22.x, 24.x] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Set npm registry | |
| run: echo "@bigcommerce-labs:registry=https://npm.pkg.github.com/" >> ~/.npmrc | |
| - name: Set npm secrets | |
| run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.DEPENDABOT_GITHUB_TOKEN }}" >> ~/.npmrc | |
| - name: Install Dependencies | |
| run: npm i | |
| - name: Lint the code | |
| run: npm run lint | |
| - name: Run test with coverage | |
| run: npm run test-with-coverage |