Skip to content

Commit

Permalink
fix: remove bun
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed Oct 24, 2023
1 parent 3c24029 commit ded1e55
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
1 change: 0 additions & 1 deletion .envrc

This file was deleted.

10 changes: 0 additions & 10 deletions shell.nix

This file was deleted.

4 changes: 2 additions & 2 deletions tests/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const testEnv = {
test('should run action', () => {
try {
const ip = join(cwd(), 'dist', 'index.js');
console.log(execSync(`bun ${ip}`, {
console.log(execSync(`node ${ip}`, {
env: testEnv
}).toString());
} catch (e) {
Expand All @@ -25,7 +25,7 @@ test('should run action', () => {
test('should run post action', () => {
try {
const ip = join(cwd(), 'dist', 'index.js');
console.log(execSync(`bun ${ip}`, {
console.log(execSync(`node ${ip}`, {
env: {
...testEnv,
STATE_isPost: 'true'
Expand Down

0 comments on commit ded1e55

Please sign in to comment.