Skip to content

Merge pull request #38 from flekschas/dependabot/github_actions/actio… #19

Merge pull request #38 from flekschas/dependabot/github_actions/actio…

Merge pull request #38 from flekschas/dependabot/github_actions/actio… #19

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pub-sub-es
run: npm ci
- name: Build pub-sub-es
run: npm run build --if-present
- name: Test pub-sub-es
run: npm test