Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

chore(deps): update dependency rollup to v3.26.3 #891

chore(deps): update dependency rollup to v3.26.3

chore(deps): update dependency rollup to v3.26.3 #891

Workflow file for this run

name: Node.js CI
'on':
push:
branches:
- master
- beta
- renovate/**
pull_request:
types:
- opened
- synchronize
env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
verify-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 14.15.0
- 16.0.0
- 16
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Setup node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
with:
cache: npm
node-version: ${{ matrix.node }}
- run: npm clean-install
- run: npm test
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Setup node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
with:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm test
release:
needs:
- verify
- verify-matrix
uses: >-
form8ion/.github/.github/workflows/release-package-semantic-release-19.yml@master
secrets:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}