Skip to content

tmp: Run build workflow on feat/deploy branch #14

tmp: Run build workflow on feat/deploy branch

tmp: Run build workflow on feat/deploy branch #14

Workflow file for this run

name: Prettier
# Run this workflow every time a new commit pushed to your repository
on: push
jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
prettier:
# Name the Job
name: Prettier formatting
# Set the type of machine to run on
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: yarn install
- run: yarn prettier