Skip to content

Bump es5-ext from 0.10.62 to 0.10.64 #610

Bump es5-ext from 0.10.62 to 0.10.64

Bump es5-ext from 0.10.62 to 0.10.64 #610

Workflow file for this run

name: YSM CI pipeline
env:
NEXT_PUBLIC_ENV: ci
NEXT_PUBLIC_ROLLBAR_ENV: CI
NEXT_PUBLIC_FIREBASE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_PROJECT_ID }}
NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}
NEXT_PUBLIC_FIREBASE_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_KEY }}
NEXT_PUBLIC_FIREBASE_DOMAIN: ${{ secrets.NEXT_PUBLIC_FIREBASE_DOMAIN }}
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
frontend-test-and-build:
name: "Frontend test and build"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: "16"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Activate caching for yarn
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ysm-frontend-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
ysm-frontend-${{ runner.os }}-yarn--
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Run linting
run: yarn lint
- name: Run unit tests
run: yarn test:unit
- name: Build app
run: yarn build