chore: Configure Renovate - autoclosed #132
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
check: | |
name: Check | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: | | |
npm run lint | |
npm run dep-check -- -- -- -p | |
npm run dep-check -- -- -- -- --unused | |
test-node: | |
name: Unit tests node ${{ matrix.node }} ${{ matrix.os }} | |
needs: build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
node: [16] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npx lerna run test:node --since ${{ github.event.pull_request.base.sha }} --concurrency 1 | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: node | |
test-chrome: | |
name: Unit tests chrome | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npx lerna run test:chrome --since ${{ github.event.pull_request.base.sha }} --concurrency 1 | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: chrome | |
test-chrome-webworker: | |
name: Unit tests chrome-webworker | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npx lerna run test:chrome-webworker --since ${{ github.event.pull_request.base.sha }} --concurrency 1 | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: chrome-webworker | |
test-firefox: | |
name: Unit tests firefox | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npx lerna run test:firefox --since ${{ github.event.pull_request.base.sha }} --concurrency 1 | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: firefox | |
test-firefox-webworker: | |
name: Unit tests firefox-webworker | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npx playwright install --with-deps | |
- run: npx lerna run test:firefox-webworker --since ${{ github.event.pull_request.base.sha }} --concurrency 1 | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: firefox-webworker | |
test-electron-main: | |
name: Unit tests electron-main | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npx lerna run test:electron-main --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -- --bail | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: electron-main | |
test-interop: | |
name: Interop tests ${{ matrix.project }} ${{ matrix.type }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
type: | |
- node | |
- browser | |
#- electron-main | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npm install | |
- run: npm run build | |
- run: npx lerna run test:interop --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -- -t ${{ matrix.type }} --bail | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: interop-${{ matrix.type }} | |
test-interface: | |
name: Interface tests ${{ matrix.suite }} ${{ matrix.type }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
type: | |
- node | |
- browser | |
#- electron-main | |
suite: | |
- test:interface:core | |
- test:interface:client | |
- test:interface:http-go | |
- test:interface:http-js | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- run: npm install | |
- run: npm run build | |
- run: npx lerna run ${{ matrix.suite }} --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -t ${{ matrix.type }} --bail | |
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 | |
with: | |
flags: interface-${{ matrix.type }} | |
test-interface-message-port-client: | |
name: Interface tests test:interface:message-port-client browser | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- run: npx playwright install --with-deps | |
- run: npx lerna run test:interface:message-port-client --since ${{ github.event.pull_request.base.sha }} --concurrency 1 -- -- --bail | |
release: | |
runs-on: ubuntu-latest | |
needs: [ | |
test-node, | |
test-chrome, | |
test-chrome-webworker, | |
test-firefox, | |
test-firefox-webworker, | |
test-electron-main, | |
test-interop, | |
test-interface, | |
test-interface-message-port-client | |
] | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
steps: | |
- uses: GoogleCloudPlatform/release-please-action@v2 | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
command: manifest | |
release-type: node | |
manifest-file: .release-please-manifest.json | |
config-file: .release-please.json | |
changelog-types: | | |
[ | |
{ "type": "feat", "section": "Features", "hidden": false }, | |
{ "type": "fix", "section": "Bug Fixes", "hidden": false }, | |
{ "type": "chore", "section": "Trivial Changes", "hidden": false }, | |
{ "type": "docs", "section": "Documentation", "hidden": false }, | |
{ "type": "deps", "section": "Dependencies", "hidden": false } | |
] | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
registry-url: 'https://registry.npmjs.org' | |
- uses: ipfs/aegir/actions/cache-node-modules@master | |
- uses: ipfs/aegir/actions/docker-login@master | |
with: | |
docker-token: ${{ secrets.DOCKER_TOKEN }} | |
docker-username: ${{ secrets.DOCKER_USERNAME }} | |
- if: ${{ steps.release.outputs.releases_created }} | |
name: Run release version | |
run: | | |
git update-index --assume-unchanged packages/ipfs-core/src/version.js packages/ipfs-http-server/src/version.js packages/ipfs/src/package.js | |
npm run --if-present release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- if: ${{ !steps.release.outputs.releases_created }} | |
name: Run release rc | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
git update-index --assume-unchanged packages/ipfs-core/src/version.js packages/ipfs-http-server/src/version.js packages/ipfs/src/package.js | |
npm run --if-present release:rc | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |