Skip to content

Bump rollup from 2.50.4 to 2.79.2 #167

Bump rollup from 2.50.4 to 2.79.2

Bump rollup from 2.50.4 to 2.79.2 #167

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- name: Start local gun server in background
run: yarn gun &
- name: Run unit tests and generate coverage report
env:
TEST_GUN_PEERS: http://localhost:8765/gun
run: yarn run coverage
- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: coverage