chore(deps): update dependency ava to v6.2.0 #4300
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@v4 | |
- name: Use Node.js v18 | |
uses: actions/setup-node@v4 | |
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: Lint source code | |
run: npm run lint | |
- name: Check for copy and paste | |
run: npm run copy:paste:detector | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: compiled-code | |
path: target/src/ | |
retention-days: 1 | |
build: | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js v18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: npm clean-install | |
- uses: actions/download-artifact@v4 | |
with: | |
name: compiled-code | |
path: target/src/ | |
- name: Build application | |
run: npm run build | |
- name: Upload built application as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: application | |
path: target/dist/ |