Skip to content

Commit

Permalink
workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
MonicaG committed Dec 20, 2024
1 parent 738a8f4 commit c73660a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches:
- main
- devxt-1653 # testing if workflow works
pull_request:
branches:
- main

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install Dependencies
run: ./.yarn/releases/yarn-1.22.19.cjs install --immutable

- name: Run Unit Tests
run: ./.yarn/releases/yarn-1.22.19.cjs test

0 comments on commit c73660a

Please sign in to comment.