Bump body-parser from 1.20.2 to 1.20.3 #297
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: tests | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: yarn install --frozen-lockfile && yarn run generate | |
- name: Lint | |
run: yarn run check:cs | |
- name: Check TS types | |
run: yarn run check:types | |
- name: Test | |
run: yarn run check:tests | |
- name: Check Helm Chart | |
id: lint | |
uses: helm/chart-testing-action@v2.0.1 | |
with: | |
command: lint | |
- name: Create kind cluster | |
uses: helm/kind-action@v1.1.0 | |
with: | |
install_local_path_provisioner: true | |
# Only build a kind cluster if there are chart changes to test. | |
if: steps.lint.outputs.changed == 'true' | |
- name: Check Helm Install | |
uses: helm/chart-testing-action@v2.0.1 | |
with: | |
command: install |