Skip to content

Merge pull request #160 from xt0rted/dependabot/github_actions/action… #330

Merge pull request #160 from xt0rted/dependabot/github_actions/action…

Merge pull request #160 from xt0rted/dependabot/github_actions/action… #330

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16
- 20
steps:
- name: Checkout Repo
uses: actions/checkout@v4.1.3
- name: Install Node
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test