Skip to content

Commit

Permalink
add smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Apr 24, 2024
1 parent de1e1b8 commit dcf7aa3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Code Test (Smoke)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
name: Run npm lint
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: npm install --legacy-peer-deps

- name: Run test
run: npm test

0 comments on commit dcf7aa3

Please sign in to comment.