Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
thednp committed Nov 29, 2023
1 parent 9b0fb78 commit 96e61fd
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,25 @@ jobs:
name: Test on Node 18
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node
- uses: pnpm/[email protected]
with:
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
# uses: actions/setup-node@v3
# with:
# node-version: 18
# cache: pnpm
# - uses: bahmutov/npm-install@v1
- run: pnpm install --no-frozen-lockfile
- run: npm run build
- run: pnpm build
- run: pnpm compile
- run: pnpm test

Expand Down

0 comments on commit 96e61fd

Please sign in to comment.