Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: ruzell22 <[email protected]>
  • Loading branch information
ruzell22 committed Sep 13, 2024
1 parent 32a1e64 commit 1baa4f1
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/are-the-types-wrong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,22 @@ jobs:
name: AreTheTypesWrong scan
runs-on: ubuntu-22.04
steps:
- name: Installing Library
- name: Installing AreTheTypesWrong Library
run: npm i -g @arethetypeswrong/cli
# - name: Building repository
# run: yarn && yarn install && yarn run configure
- name: Use Node.js ${{ env.NODEJS_VERSION }}
uses: actions/[email protected]
with:
node-version: ${{ env.NODEJS_VERSION }}
- uses: actions/[email protected]
- id: yarn-cache
name: Restore Yarn Cache
uses: actions/[email protected]
with:
key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
path: ./.yarn/
restore-keys: |
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
- run: ./tools/ci.sh
- name: Running AreTheTypesWrong scan
run: TS_NODE_PROJECT=./tools/tsconfig.json node --trace-deprecation --experimental-modules --abort-on-uncaught-exception --loader ts-node/esm --experimental-specifier-resolution=node ./tools/custom-checks/run-attw-on-tgz.ts
# run: TS_NODE_PROJECT=./tools/tsconfig.json node --trace-deprecation --experimental-modules --abort-on-uncaught-exception --loader ts-node/esm --experimental-specifier-resolution=node ./tools/custom-checks/run-attw-on-tgz.ts
run: yarn run are-the-types-wrong

0 comments on commit 1baa4f1

Please sign in to comment.