feat!: remove support for Docker #212
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: 'Tests' | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
test-unit: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/[email protected]' | |
- name: 'Setup Node.js' | |
uses: 'actions/[email protected]' | |
with: | |
node-version: '20.x' | |
cache: 'npm' | |
- name: 'Install dependencies' | |
run: 'npm clean-install' | |
- name: 'Build' | |
run: 'npm run build' | |
- name: 'Unit Test' | |
run: 'npm run test:unit' | |
test-e2e: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
include: | |
# - os: 'macos-latest' | |
# - os: 'windows-latest' | |
- os: 'ubuntu-latest' | |
fail-fast: false | |
steps: | |
- uses: 'actions/[email protected]' | |
- name: 'Setup Node.js' | |
uses: 'actions/[email protected]' | |
with: | |
node-version: '20.x' | |
cache: 'npm' | |
- name: 'Install dependencies' | |
run: 'npm clean-install' | |
- name: 'Build' | |
run: 'npm run build' | |
- name: 'Install Leon CLI' | |
run: 'npm install --global' | |
- name: 'End To End (e2e) Test' | |
run: 'npm run test:e2e' |