Skip to content

chore(deps): bump elliptic from 6.5.4 to 6.6.0 in /code #419

chore(deps): bump elliptic from 6.5.4 to 6.6.0 in /code

chore(deps): bump elliptic from 6.5.4 to 6.6.0 in /code #419

name: PR Infrastructure action
env:
CONTAINER: infrastructure
on:
pull_request:
paths:
- ".github/workflows/pr_infrastructure.yaml"
- "build/**"
- "code/yarn.lock"
- "code/workspaces/common/**"
- "code/workspaces/infrastructure-api/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-cache-${{ env.CONTAINER }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: npm-cache-${{ env.CONTAINER }}-
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash