Skip to content

Commit

Permalink
Merge pull request #2 from ryoppippi/feature/ci-test
Browse files Browse the repository at this point in the history
add test ci
  • Loading branch information
AcrylicShrimp authored Feb 21, 2025
2 parents 1e7426a + af83f93 commit cd0711b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "test"

on:
push:
pull_request:

env:
NODE_VERSION: lts/*

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm i --frozen-lockfile
- run: npm run test

0 comments on commit cd0711b

Please sign in to comment.