insomnia/.github/workflows/test.yml
Jack Kavanagh 8cea5edc26
Chore: replace spectron with playwright (#4305)
* add smoke test fixture

* respect INSOMNIA_DATA_PATH override in CI

* add playwright

* remove spectron

* move CLI tests after app smoke tests in CI

* remove onboarding skip

* random path feedback

* npx feedback

* remove DATA_PATH override

* remove step from import process

* cleanup

* restore readme

* move specs to tests

* feedback on DESIGNER_DATA_PATH

* remove skipLibCheck

* last mention of spectron

* fix windows npm run test:smoke:build

* DATA_PATH override is required

* github CI is slow sometimes
2021-12-17 13:05:14 +01:00

149 lines
4.6 KiB
YAML

name: Test
on:
workflow_dispatch:
push:
branches:
- develop
- master
pull_request:
types:
- opened
- synchronize
jobs:
get_version:
name: Get version
runs-on: ubuntu-latest
outputs:
inso-version: ${{ steps.get-package-version.outputs.current-version }}
steps:
- name: Checkout branch
uses: actions/checkout@v1
- name: Get version
id: get-package-version
uses: martinbeentjes/npm-get-version-action@master
with:
path: packages/insomnia-inso
OS:
needs: [get_version]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout branch
uses: actions/checkout@v1
- name: Read Node version from .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}
- name: Bootstrap packages
run: npm run bootstrap
- name: Lint
run: npm run lint
- name: Lint markdown
run: npm run lint:markdown
- name: Type checks
run: npm run type-check
- name: Run tests
run: npm test
- name: Build app for smoke tests
run: npm run app-build:smoke
- name: Run app smoke tests
run: npm run test:smoke:build
- name: Set Inso CLI variables
id: inso-variables
shell: bash
run: |
INSO_VERSION="${{ needs.get_version.outputs.inso-version }}-run.${{ github.run_number }}"
PKG_NAME="inso-${{ matrix.os }}-$INSO_VERSION"
BUNDLE_ID="com.insomnia.inso"
echo ::set-output name=pkg-name::$PKG_NAME
echo ::set-output name=bundle-id::$BUNDLE_ID
echo ::set-output name=inso-version::$INSO_VERSION
- name: Package Inso CLI binary
run: npm run inso-package
env:
VERSION: ${{ steps.inso-variables.outputs.inso-version }}
- name: Codesign & create macOS installer
if: matrix.os == 'macos-latest'
run: |
chmod +x ./src/scripts/macos-pkg.sh
./src/scripts/macos-pkg.sh
shell: bash
working-directory: packages/insomnia-inso
continue-on-error: true
env:
MACOS_CERTIFICATE: ${{ secrets.DESIGNER_MAC_CSC_LINK }}
MACOS_CERTIFICATE_PWD: ${{ secrets.DESIGNER_MAC_CSC_KEY_PASSWORD }}
PKG_NAME: ${{ steps.inso-variables.outputs.pkg-name }}
BUNDLE_ID: ${{ steps.inso-variables.outputs.bundle-id }}
VERSION: ${{ steps.inso-variables.outputs.inso-version }}
# We don't need to notarize and staple on every commit
# - name: Notarize installer
# if: matrix.os == 'macos-latest'
# uses: devbotsxyz/xcode-notarize@v1
# with:
# product-path: packages/insomnia-inso/artifacts/${{ steps.inso-variables.outputs.pkg-name }}.pkg
# primary-bundle-id: ${{ steps.inso-variables.outputs.bundle-id }}
# appstore-connect-username: ${{ secrets.DESIGNER_APPLE_ID }}
# appstore-connect-password: ${{ secrets.DESIGNER_APPLE_ID_PASSWORD }}
# - name: Staple installer
# if: matrix.os == 'macos-latest'
# uses: devbotsxyz/xcode-staple@v1
# with:
# product-path: packages/insomnia-inso/artifacts/${{ steps.inso-variables.outputs.pkg-name }}.pkg
# - name: Notarize binary
# if: matrix.os == 'macos-latest'
# uses: devbotsxyz/xcode-notarize@v1
# with:
# product-path: packages/insomnia-inso/binaries/inso
# primary-bundle-id: ${{ steps.inso-variables.outputs.bundle-id }}-binary
# appstore-connect-username: ${{ secrets.DESIGNER_APPLE_ID }}
# appstore-connect-password: ${{ secrets.DESIGNER_APPLE_ID_PASSWORD }}
- name: Create Inso CLI artifacts
run: npm run inso-package:artifacts
env:
VERSION: ${{ steps.inso-variables.outputs.inso-version }}
- name: Upload Inso CLI artifacts
uses: actions/upload-artifact@v2
with:
if-no-files-found: ignore
name: ${{ steps.inso-variables.outputs.pkg-name }}
path: packages/insomnia-inso/artifacts
- name: Run Inso CLI smoke tests
run: npm run test:smoke:cli
- name: Upload smoke test screenshots
uses: actions/upload-artifact@v2
if: always()
with:
if-no-files-found: ignore
name: ${{ matrix.os }}-smoke-test-screenshots-${{ github.run_number }}
path: packages/insomnia-smoke-test/screenshots