Skip to content

Commit

Permalink
add CI workflow for prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ilamanov committed Jan 10, 2025
1 parent 7b20915 commit f6501e5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: React Hooks for Dune Echo

on: [push]

jobs:
build:
runs-on: [self-hosted, xlarge]
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"

- name: Install dependencies
run: npm install --no-audit --no-fund

- name: "Test: prettier"
run: npm run test:prettier

0 comments on commit f6501e5

Please sign in to comment.