This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
Update dAPI contracts page language #2604
Workflow file for this run
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: Check formatting | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize, reopened] | |
jobs: | |
format-check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Clone airnode | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14.17.1' | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn install | |
- name: Check formatting | |
run: yarn run format:check |