Skip to content

Bump @rollup/plugin-replace from 5.0.7 to 6.0.1 #1

Bump @rollup/plugin-replace from 5.0.7 to 6.0.1

Bump @rollup/plugin-replace from 5.0.7 to 6.0.1 #1

Workflow file for this run

# workflow to run tests (i.e. jest) on PR
name: jest
on:
pull_request:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
# Setup npm environment to run tests
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run test