This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
fix typo #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Push Testing" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
# Checks out git | |
- uses: actions/checkout@v4.1.7 | |
with: | |
fetch-depth: 0 | |
# Sets Bun.js up | |
- name: Use Bun.js | |
uses: oven-sh/setup-bun@v2.0.1 | |
with: | |
bun-version: latest | |
# Runs any test scripts | |
- name: Unit Tests | |
run: | | |
bun install | |
bun run test | |
env: | |
CI: true |