build(deps): bump snakecase-keys from 5.4.2 to 5.4.6 in /frontend #2367
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: (BF-Handler) Lint, Unit and Component tests | |
on: | |
pull_request: | |
paths: | |
- "frontend/shared/**" | |
- "frontend/benefit/shared/**" | |
- "frontend/benefit/handler/**" | |
- "frontend/*" | |
- ".github/workflows/bf-handler-frontend-tests.yml" | |
- "!**/browser-tests/**" | |
- "!**/README.md" | |
push: | |
branches: [develop, main] | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: ./frontend/benefit/handler | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
run: yarn --prefer-offline --frozen-lockfile --check-files | |
- name: Run linter | |
run: yarn lint | |
- name: Run tests | |
run: yarn test:coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
run: yarn --prefer-offline --frozen-lockfile --check-files | |
- name: Check that building dev application works | |
env: | |
NEXTJS_DISABLE_SENTRY: true | |
run: NODE_OPTIONS=--openssl-legacy-provider yarn build |