Skip to content

Merge pull request #108 from github/dependabot/github_actions/actions… #191

Merge pull request #108 from github/dependabot/github_actions/actions…

Merge pull request #108 from github/dependabot/github_actions/actions… #191

Workflow file for this run

name: Node CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Use Node.js 20.x
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20.x
- name: npm install, and test
run: |
npm install
npm test
env:
CI: true