Skip to content

Commit

Permalink
fix: ci yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Mar 6, 2024
1 parent 448f87e commit f903d3e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
name: Pull request tests

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: large_ubuntu_16
strategy:
matrix:
node-version: [18.x]
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- uses: pnpm/action-setup@v3
with:
uses: pnpm/action-setup@v3
with:
version: 8
- run: cp .env.example .env
- run: pnpm install
- run: pnpm prettier:check
- name: "pnpm CI test"
- name: pnpm CI test
run: |
# sometimes not created and is not tailed
touch fhevm.log
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/testmock.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
name: Pull request tests

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: large_ubuntu_16
strategy:
matrix:
node-version: [18.x]
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- uses: pnpm/action-setup@v3
with:
uses: pnpm/action-setup@v3
with:
version: 8
- run: cp .env.example .env
- run: pnpm install
- run: pnpm prettier:check
- name: "pnpm CI test:moc"
- name: pnpm CI test:mock
run: pnpm test:mock

0 comments on commit f903d3e

Please sign in to comment.