Skip to content

Commit

Permalink
ci: fix sed can't read ava-e2e.config.js: No such file or directory
Browse files Browse the repository at this point in the history
Signed-off-by: Kenta Kozuka <[email protected]>
  • Loading branch information
kentakozuka committed Feb 22, 2024
1 parent f1e7812 commit fd3ef68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ jobs:
run: make build
- name: e2e test
run: |
sed -i -e "s|<HOST>|${{ secrets.E2E_HOST }}|" -e "s|<TOKEN>|${{ secrets.E2E_TOKEN }}|" ava-e2e.config.js
sed -i -e "s|<HOST>|${{ secrets.E2E_HOST }}|" -e "s|<TOKEN>|${{ secrets.E2E_TOKEN }}|" ava-e2e.config.mjs
make e2e
4 changes: 2 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ tools
.npmignore
.prettierignore
.prettierrc.js
ava-e2e.config.js
ava-test.config.js
ava-e2e.config.mjs
ava-test.config.mjs
babel-e2e.config.js
babel-test.config.js
babel.config.js
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ make test
```

Run e2e tests.
First, replace placeholders in [ava-e2e.config.js](./ava-e2e.config.js), then run the command below.
First, replace placeholders in [ava-e2e.config.mjs](./ava-e2e.config.mjs), then run the command below.

```bash
make e2e
Expand Down

0 comments on commit fd3ef68

Please sign in to comment.