Skip to content

chore(deps-dev): bump rollup from 4.29.1 to 4.30.1 (#964) #1090

chore(deps-dev): bump rollup from 4.29.1 to 4.30.1 (#964)

chore(deps-dev): bump rollup from 4.29.1 to 4.30.1 (#964) #1090

on: push
jobs:
tests:
name: Build and run tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- run: set -e
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npm run pull-submodules
- run: npm run prepare-templates
- run: npm run lint
- run: npm run test:ci
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: npm run build --if-present