Change release notes #222
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: | |
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: "Make .env file" | |
run: npm run make:env | |
- name: "Lint" | |
run: npm run lint | |
- name: "Test" | |
run: npm run test |