Skip to content

Add implementation for make() and resolve() #172

Add implementation for make() and resolve()

Add implementation for make() and resolve() #172

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: [ '20' ]
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 install
- name: "Lint"
run: npm run lint
- name: "Test"
run: npm run test