Skip to content

Merge pull request #6 from EmericW/fix/packagejson-exports-order #4

Merge pull request #6 from EmericW/fix/packagejson-exports-order

Merge pull request #6 from EmericW/fix/packagejson-exports-order #4

Workflow file for this run

name: PR Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test