Skip to content

Commit

Permalink
Add GitHub Actions job to execute tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anlambert committed Aug 23, 2024
1 parent 787d793 commit cb3472e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/showdown-highlight-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: showdown-highlight-tests

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit cb3472e

Please sign in to comment.