chore(lambda): bump @swc/core from 1.7.4 to 1.7.22 in /lambdas #873
Workflow file for this run
This file contains 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 lambdas | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'lambdas/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20] | |
container: | |
image: node:${{ matrix.node }} | |
defaults: | |
run: | |
working-directory: ./lambdas | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run prettier | |
run: yarn format-check | |
- name: Run linter | |
run: yarn lint | |
- name: Run tests | |
id: test | |
run: yarn test | |
- name: Build distribution | |
run: yarn build | |
- name: Upload coverage report | |
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 | |
if: ${{ failure() }} | |
with: | |
name: coverage-reports | |
path: ./**/coverage | |
retention-days: 5 |