Skip to content

chore(deps): update dependency rollup to v4 #669

chore(deps): update dependency rollup to v4

chore(deps): update dependency rollup to v4 #669

name: NPM lint and test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: build-lint-test
steps:
- uses: actions/checkout@v4
#- uses: actions/setup-node@v3
# with:
# node-version: 16
- uses: bahmutov/npm-install@v1 # For improved caching of NPM/Yarn
- run: yarn --frozen-lockfile
- run: npm run build
- run: npm run lint
- run: npm run test
build-example:
runs-on: ubuntu-latest
name: build-lint-test example
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- uses: bahmutov/npm-install@v1 # For improved caching of NPM/Yarn
with:
working-directory: example
- run: yarn --frozen-lockfile
working-directory: example
- run: npm run build
working-directory: example