diff --git a/.eslintignore b/.eslintignore index 0758621c..113a26a5 100644 --- a/.eslintignore +++ b/.eslintignore @@ -15,3 +15,5 @@ lib/* /src/types/ !.eslintrc.js + +e2e/* diff --git a/.github/workflows/compatibility.yml b/.github/workflows/compatibility.yml index b9617ca1..18fe6295 100644 --- a/.github/workflows/compatibility.yml +++ b/.github/workflows/compatibility.yml @@ -33,10 +33,11 @@ jobs: cache: 'npm' - name: Pack Emmett locally - run: echo "npm pack --json --pack-destination './e2e/esmCompatibility' -w @event-driven-io/emmett | jq '.[] | .filename" >> $PACKAGE_FILENAME + shell: bash + run: echo "PACKAGE_FILENAME=$(npm pack --json --pack-destination './e2e/esmCompatibility' -w @event-driven-io/emmett | jq -r '.[] | .filename')" >> $GITHUB_ENV - name: Test - run: echo $PACKAGE_FILENAME + run: echo ${{ env.PACKAGE_FILENAME }} - name: Install dependencies working-directory: ./e2e/esmCompatibility diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 0d421d7e..0367c3bb 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.shared.json", "include": ["./packages/**/*.ts", "./docs/**/*.ts", "./tsup.config.ts"], - "exclude": ["node_modules", "tmp", "e2e"], + "exclude": ["node_modules", "tmp"], "files": [], "compilerOptions": { "noEmit": true /* Do not emit outputs. */