Skip to content

Commit

Permalink
Ci: test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
asheswook authored Feb 11, 2025
1 parent 4c844c4 commit 7617b82
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Test

on:
push:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm i
- run: npm test

0 comments on commit 7617b82

Please sign in to comment.