Skip to content

chore(deps): Bump @babel/traverse from 7.15.4 to 7.23.2 #27

chore(deps): Bump @babel/traverse from 7.15.4 to 7.23.2

chore(deps): Bump @babel/traverse from 7.15.4 to 7.23.2 #27

Workflow file for this run

name: frontend
on:
push:
branches:
- "*"
- "*/*"
pull_request:
branches:
- "*"
- "*/*"
jobs:
job_linting:
name: Linting
strategy:
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: GitHub Action for Yarn
uses: borales/[email protected]
- name: Show environment information
run: |
yarn -v
- name: Get cache directory - Yarn
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache dependencies - Yarn
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ matrix.os }}-yarn-
- name: Install dependencies
run: |
yarn install
- run: yarn run prettier-check
- run: yarn run lint