Skip to content

Merge pull request #64 from firstbatchxyz/erhant/parcel-rfk #18

Merge pull request #64 from firstbatchxyz/erhant/parcel-rfk

Merge pull request #64 from firstbatchxyz/erhant/parcel-rfk #18

Workflow file for this run

name: build
# run when `dev` has a push or PR
# or when `master` has a push
on:
pull_request:
types:
- opened
branches:
- dev
push:
branches:
- master
- dev
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 19.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: Formatting
run: yarn format
- name: Linting
run: yarn lint
- name: Build
run: yarn build