Skip to content

chore(deps): update dependency esbuild to ^0.21.0 (#395) #942

chore(deps): update dependency esbuild to ^0.21.0 (#395)

chore(deps): update dependency esbuild to ^0.21.0 (#395) #942

Workflow file for this run

name: Build
on:
# Ensure GitHub actions are not run twice for same commits
push:
branches: [main]
tags: ['*']
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
fail-fast: false
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Using Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
check-latest: true
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run format:ci
- name: Tests
run: npm run test:ci
- name: Get test coverage flags
id: test-coverage-flags
run: |-
os=${{ matrix.os }}
echo "::set-output name=os::${os/-latest/}"
shell: bash
- uses: codecov/codecov-action@v3
with:
file: coverage/coverage-final.json
flags: ${{ steps.test-coverage-flags.outputs.os }}