Skip to content

Commit

Permalink
Merge pull request #451 from munierujp/add-test-action
Browse files Browse the repository at this point in the history
CI(GitHub Actions)でテストを実行
  • Loading branch information
halsk authored Jan 6, 2024
2 parents 8d5534f + fa13537 commit 0462aa8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: test
on: push

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
- run: yarn install
- run: yarn test

0 comments on commit 0462aa8

Please sign in to comment.