Fix for TS 2022 and up problem (#48) #185
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 | |
env: | |
NODE_VERSION: 20 | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
permissions: | |
contents: read | |
jobs: | |
test-unit: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Using node v${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
cache: npm | |
- name: NPM Install | |
run: npm ci | |
env: | |
CYPRESS_INSTALL_BINARY: 0 | |
- name: Test | |
run: npm run test | |
test-e2e: | |
name: E2E Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Using node v${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
cache: npm | |
- name: NPM Install | |
run: npm ci | |
- name: Run Cypress tests | |
uses: cypress-io/github-action@v6 | |
with: | |
start: npm run dev -- --host=127.0.0.1 | |
wait-on: 'http://127.0.0.1:3009' | |
browser: chrome |