This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
Native onchain development - Updated hello world lesson #1384
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: Formatting / Lint | |
on: | |
push: | |
branches: [master, main] | |
pull_request: | |
branches: [master, main] | |
jobs: | |
Format: | |
name: Test formatting via prettier/lint... | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- name: before_install | |
run: | |
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf | |
&& sudo sysctl -p | |
- name: installing yarn | |
run: yarn install | |
- name: prettier:check | |
run: yarn prettier | |
- name: lint | |
run: yarn lint |