Skip to content

Bump esbuild from 0.19.10 to 0.19.12 #45

Bump esbuild from 0.19.10 to 0.19.12

Bump esbuild from 0.19.10 to 0.19.12 #45

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-node:
name: Unit Tests
runs-on: [self-hosted, Linux, medium, ephemeral]
permissions:
checks: write
pull-requests: write
contents: read
steps:
- name: Setup NodeJS Environment
uses: actions/setup-node@d86ebcd40b3cb50b156bfa44dd277faf38282d12
with:
node-version: 18.x
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run tests (Forked PR)
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository && !cancelled() && !failure() }}
run: npm run test
- name: Test
uses: ArtiomTr/jest-coverage-report-action@v2
if: ${{ ((github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push') && !cancelled() && !failure() }}
with:
test-script: npm run test