Skip to content

ci: bump aws-actions/configure-aws-credentials from 5 to 6 #1230

ci: bump aws-actions/configure-aws-credentials from 5 to 6

ci: bump aws-actions/configure-aws-credentials from 5 to 6 #1230

Workflow file for this run

---
name: Pull request build
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Lint and test project
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Install node 22
uses: actions/setup-node@v6
with:
node-version: '22'
cache: npm
- name: Install project modules
run: npm ci
- name: Lint source files
run: npm run lint
- name: Run unit tests
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: false