This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
chore(deps): update dependency prettier to v2.8.8 #1001
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull request | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out project | |
uses: actions/checkout@v2 | |
- name: Setting up node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Installing dependencies | |
run: yarn install | |
- name: Building project | |
run: yarn build | |
- name: Running tests | |
run: yarn test | |
- name: Running prettier | |
run: yarn prettier:check | |
label: | |
name: Label | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |