Bump brace-expansion from 1.1.15 to 1.1.18 #19
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: test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: '24' | |
| registry-url: https://registry.npmjs.org | |
| scope: "@activeprospect" | |
| cache: 'npm' | |
| - run: npm ci | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - run: npm run lint | |
| - run: npm test | |
| validate-serverless-template: | |
| name: validate serverless template | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: '24' | |
| registry-url: https://registry.npmjs.org | |
| scope: "@activeprospect" | |
| cache: 'npm' | |
| - run: npm ci | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - run: npm i -g osls@3.70.0 | |
| # serverless.yml no longer resolves any deploy-time variable (the secret | |
| # is fetched at runtime via Secrets Manager), so packaging needs no AWS | |
| # credentials. | |
| - run: serverless package --stage staging | |
| env: | |
| AWS_REGION: 'us-east-1' |