Skip to content

Commit

Permalink
Add build step example to README
Browse files Browse the repository at this point in the history
  • Loading branch information
yonta committed May 24, 2024
1 parent 8bcb81e commit 59ef71e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,15 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
# ...
# (snip)
# ...
# Ensure you build your project before running this action
# For example,
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 20
# cache: 'npm'
# cache-dependency-path: subdir/package-lock.json
# - run: npm ci
- name: Run esbuild
run: npm run build

Expand Down

0 comments on commit 59ef71e

Please sign in to comment.