Skip to content

Commit

Permalink
revert action
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Mar 24, 2024
1 parent 14209ec commit 87446e1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
13 changes: 0 additions & 13 deletions .github/actions/setup/action.yml

This file was deleted.

13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn install # --frozen-lockfile TODO get this option working
- run: yarn lint
test-js:
timeout-minutes: 2
Expand All @@ -36,9 +38,11 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install # --frozen-lockfile TODO get this option working
- run: yarn test
test-ts:
timeout-minutes: 2
Expand All @@ -48,6 +52,7 @@ jobs:
fail-fast: false
matrix:
node:
# - '10' dropped support due to error [email protected]: The engine "node" is incompatible with this module. Expected version ">=12". Got "10.24.1"
- '12'
- '14'
- '16'
Expand All @@ -58,7 +63,9 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/setup
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install # --frozen-lockfile TODO get this option working
- run: yarn test-ts

0 comments on commit 87446e1

Please sign in to comment.