Skip to content

Merge pull request #316 from privacy-scaling-explorations/ref/change-… #470

Merge pull request #316 from privacy-scaling-explorations/ref/change-…

Merge pull request #316 from privacy-scaling-explorations/ref/change-… #470

Workflow file for this run

name: style
on:
pull_request:
push:
branches:
- main
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Restore yarn cache
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
- name: Build
run: yarn build
- name: Run Prettier
run: yarn prettier
- name: Run Eslint
run: yarn lint