mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-12-31 13:51:05 +00:00
* Updated mocha, tests now work with node 20 * Update package-lock.json * Enable Node CI for v2.0v2.0 branch (#2123) Run tests for v2.0v2.0 branch too * Bump CI's node version to 20.x
20 lines
384 B
YAML
20 lines
384 B
YAML
name: Node CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, dev, htmx-2.0, v2.0v2.0 ]
|
|
pull_request:
|
|
branches: [ master, dev, htmx-2.0, v2.0v2.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: '20.x'
|
|
- run: npm ci
|
|
- run: npm test
|