Skip to content

πŸ”₯ Remove test #122

πŸ”₯ Remove test

πŸ”₯ Remove test #122

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
- name: Setup bun πŸ› οΈ
uses: oven-sh/setup-bun@v1
- name: Install πŸ”§
run: |
bun install
- name: Build πŸ—οΈ
run: |
bun run build
- name: Test βœ… # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
bun run test