diff options
author | Alexander Petros <apetros15@gmail.com> | 2023-06-30 12:23:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 11:23:54 -0500 |
commit | 4a7e71d2bb965a053ca49d6715f30260c7b91f9b (patch) | |
tree | d66585f32c6f99a321a982b86660d92cdd03695c /.github | |
parent | 714adc46e3b54ef6bc16fafcf83141c416b293b9 (diff) | |
download | htmx-4a7e71d2bb965a053ca49d6715f30260c7b91f9b.tar.gz htmx-4a7e71d2bb965a053ca49d6715f30260c7b91f9b.zip |
Switch CI to GitHub actions (#1515)
👑
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..ea1e8220 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: Node CI + +on: + push: + branches: [ master, dev, htmx-2.0 ] + pull_request: + branches: [ master, dev, htmx-2.0 ] + +jobs: + test_suite: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '15.x' + - run: npm ci + - run: npm test |