Skip to content

chore(deps): bump serve-static and express #53

chore(deps): bump serve-static and express

chore(deps): bump serve-static and express #53

Workflow file for this run

name: Verify build
on:
workflow_dispatch:
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: install
run: npm ci
- name: build lib
run: npm run lib
- name: build demo
run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: install
run: npm ci
- name: lint
run: npm run lint
test-chrome:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: install
run: npm ci
- name: test
run: npm run test -- --watch=false --browsers=ChromeHeadless
test-firefox:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: install
run: npm ci
- name: test
run: npm run test -- --watch=false --browsers=FirefoxHeadless
test-safari:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: install
run: npm ci
- name: test
run: npm run test -- --watch=false --browsers=SafariNative
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: install
run: npm ci
- name: prettier
run: npm run prettier-check