Skip to content

Commit

Permalink
test: github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yini-chen committed Apr 16, 2024
1 parent 04d68d2 commit f3b703e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/smoketest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Smoke Test

on: [push]

jobs:
smoke-test:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4

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

- name: Install yarn
run: npm install --global yarn

- name: Install Dependencies
run: yarn

- name: Run Smoke Test
run: yarn -v

0 comments on commit f3b703e

Please sign in to comment.