Skip to content

🚀 refactor(repo): update tooling and cleaning up builds #19

🚀 refactor(repo): update tooling and cleaning up builds

🚀 refactor(repo): update tooling and cleaning up builds #19

Workflow file for this run

name: Integration Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn install:docs
- run: yarn test:integration
- uses: actions/upload-artifact@v2
if: failure()
with:
name: integration-tests
path: ${{ github.workspace }}/tests/artifacts/
retention-days: 5