Skip to content

Commit

Permalink
Merge pull request #14 from rustymotors/drazisil-patch-1
Browse files Browse the repository at this point in the history
Create main.yml
  • Loading branch information
drazisil committed Jul 23, 2024
2 parents b4b2c4f + 71615f2 commit efd587e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: pnpm rusty workflow
on:
push:

jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: nx build
run: pnpm run build

0 comments on commit efd587e

Please sign in to comment.