Skip to content
Snippets Groups Projects
Unverified Commit 7e82b89f authored by yisding's avatar yisding Committed by GitHub
Browse files

Merge pull request #42 from run-llama/sweep/add-gha-workflow_1

[DRAFT] Add GitHub Actions workflow to run tests
parents 672dde6e 66948369
Branches
Tags
No related merge requests found
name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: |
npm i -g pnpm
pnpm install
- name: Run tests
run: pnpm run test
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment