Skip to content

first commit ๐Ÿ›  #1

first commit ๐Ÿ› 

first commit ๐Ÿ›  #1

Workflow file for this run

name: Run Tests
on:
push:
pull_request:
types: [opened, reopened]
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: checkout ๐Ÿ›Ž๏ธ
uses: actions/checkout@v4
- name: node
uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Deps
run: |
yarn
yarn build
- name: Test
run: |
yarn test