diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 52ce9cd..fceb485 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,13 +16,12 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: '14' + - name: Install bun + run: | + curl -fsSL https://bun.sh/install | bash - name: Install dependencies - run: npm install + run: bun install - name: Run Jest tests - run: npm test + run: bun test