This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
fix(contracts): fix typos in awk script #528
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Format onchain code | |
on: | |
push: | |
paths: | |
- '.github/workflows/code_format.yml' | |
- 'onchain/**' | |
jobs: | |
onchain: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: onchain | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "16" | |
- run: yarn install | |
- run: yarn prettier:rollups |