Skip to content

Fix unable to find @aedart/cli/dist/esm/cli.js in CI environment #237

Fix unable to find @aedart/cli/dist/esm/cli.js in CI environment

Fix unable to find @aedart/cli/dist/esm/cli.js in CI environment #237

Workflow file for this run

name: 'Tests'
on:
push:
pull_request:
# Schedule tests to run every day at 07:00 (if possible)
# Doing so should enable us to capture evt. changes in
# dependencies that are breaking...
# schedule:
# - cron: '0 7 * * *'
jobs:
ion_tests:
name: "Ion (Node ${{ matrix.node }} on ${{ matrix.os }})"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ 'ubuntu-22.04' ]
node: [ '22' ]
steps:
# ------------------------------------------------------------------------------------------------------- #
# Checkout code ...
# ------------------------------------------------------------------------------------------------------- #
- name: "Checkout"
uses: actions/checkout@v3
# ------------------------------------------------------------------------------------------------------- #
# Install Browsers
# ------------------------------------------------------------------------------------------------------- #
- name: "Install Chrome"
uses: browser-actions/setup-chrome@v1
with:
chrome-version: latest
- name: "Install Firefox"
uses: browser-actions/setup-firefox@v1
with:
firefox-version: latest
# ------------------------------------------------------------------------------------------------------- #
# Install Node
# ------------------------------------------------------------------------------------------------------- #
- name: "Use Node ${{ matrix.node }}"
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
# ------------------------------------------------------------------------------------------------------- #
# Run...
# ------------------------------------------------------------------------------------------------------- #
- name: "Install dependencies"
run: npm ci
- name: "Make .env file"
run: npm run make:env
- name: "Lint"
run: npm run lint
- name: "Build"
run: npm run build
- name: "Test (Cli)"
run: npm run test:cli
- name: "Test (Browser)"
run: npm run test:fast