Skip to content

Commit

Permalink
Updated compatibility build and fixed linter settings to ignore e2e f…
Browse files Browse the repository at this point in the history
…older
  • Loading branch information
oskardudycz committed Mar 8, 2024
1 parent 5c01317 commit 06b0b34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ lib/*
/src/types/

!.eslintrc.js

e2e/*
5 changes: 3 additions & 2 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -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. */
Expand Down

0 comments on commit 06b0b34

Please sign in to comment.