Update dependency happy-dom to v16.7.3 #1206
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-CI | |
on: | |
pull_request: | |
env: | |
NODE_ENV: prod | |
jobs: | |
StyleGuides_checks: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [18.x] | |
os: [ubuntu-latest] | |
fail-fast: false | |
steps: | |
- name: ⬇️ Checkout code | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: ⚙️ Set node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: 🔧 Install | |
run: pnpm i --frozen-lockfile | |
- name: 📖 Lint | |
run: pnpm run lint | |
- name: ☑️ Type checking | |
run: pnpm run type:check | |
Tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [18.x] | |
os: [ubuntu-latest] | |
fail-fast: false | |
steps: | |
- name: ⬇️ Checkout code | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: ⚙️ Set node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: 🔧 Install | |
run: pnpm i --frozen-lockfile | |
- name: 🏗 Build | |
run: pnpm run build | |
- name: ✅ Tests | |
run: pnpm run test |