Skip to content

Bump elliptic from 6.5.4 to 6.5.7 in the npm_and_yarn group #35

Bump elliptic from 6.5.4 to 6.5.7 in the npm_and_yarn group

Bump elliptic from 6.5.4 to 6.5.7 in the npm_and_yarn group #35

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- main
paths:
- "assets/**"
- "package.json"
- "yarn.lock"
pull_request:
paths:
- "assets/**"
- "package.json"
- "yarn.lock"
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Use yarn cache
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive --no-progress
- name: Build bundle
run: yarn run build
- name: Run ESLint
run: yarn run lint
- name: Run tests
run: yarn test