Skip to content

Commit

Permalink
new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesLawton committed Jul 4, 2024
1 parent cc5c1bc commit ce63e0e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/on-push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,20 @@ jobs:
steps:
- name: git-checkout
uses: actions/checkout@v4

- name: Install dependencies
uses: ./.github/actions/install-dependencies
run: |
npm install -g [email protected]
- name: Set up Node
uses: actions/setup-node@v3
with:
cache: pnpm
node-version: 20

- name: Install modules
run: |
pnpm install
- name: Build
run: pnpm build
Expand Down

0 comments on commit ce63e0e

Please sign in to comment.