Skip to content

🔖 Branch for v1.0.16 #480

🔖 Branch for v1.0.16

🔖 Branch for v1.0.16 #480

Workflow file for this run

jobs:
build:
if: github.ref_type == 'branch'
name: Build on Node.js ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Upgrade npm
run: npm install npm@latest -g
- name: Setup modules
run: npm ci
- name: Build
run: npm run build
name: Build
on:
pull_request:
branches:
- '**'
push:
branches:
- '**'