chore(deps): update dependency esbuild to v0.18.15 #3195
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Compile source code | |
run: npm run compile | |
- name: Run unit tests | |
run: npm run test:unit:coverage | |
- name: Upload code coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: target/coverage/clover.xml | |
- name: Lint source code | |
run: npm run lint | |
- name: Check for copy and paste | |
run: npm run copy:paste:detector | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: compiled-code | |
path: target/src/ | |
retention-days: 1 | |
build: | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: npm clean-install | |
- uses: actions/download-artifact@v3 | |
with: | |
name: compiled-code | |
path: target/src/ | |
- name: Build application | |
run: npm run build | |
- name: Upload built application as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: application | |
path: target/dist/ |