Skip to content

Commit

Permalink
chore: run build command in gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikzita committed Jan 14, 2024
1 parent 3359390 commit 76a6d49
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/learn-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: learn-github-actions
on: [push]

jobs:
lint-and-format:
lint-format-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -11,7 +11,10 @@ jobs:
node-version: '18'
- run: npm install
- run: npm run lint
- run: npm run dev
- run: npm run codegen
- run: npm run build
- name: Spellcheck
run: |
npm install -g cspell
cspell "**/*.{js,jsx,ts,tsx,md}"
cspell "**/*.{js,jsx,ts,tsx,md}"

0 comments on commit 76a6d49

Please sign in to comment.