Skip to content

Commit

Permalink
ci: fix integration config
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed May 6, 2023
1 parent 6c907f7 commit 1190ce6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
actions/setup-node@v3
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: bahmutov/npm-install@v1
- name: Build Types
run: yarn build
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ jobs:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
actions/setup-node@v3
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: bahmutov/npm-install@v1
- name: Install
run: yarn install --frozen-lockfile
- name: Build Types
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
actions/setup-node@v3
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: bahmutov/npm-install@v1
- name: Build Types
run: yarn build --buildSingle
Expand Down

0 comments on commit 1190ce6

Please sign in to comment.