This repository has been archived by the owner on Jun 23, 2024. It is now read-only.
Update eslint packages #7947
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: Main | |
on: [push] | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: nschloe/action-cached-lfs-checkout@v1 | |
- name: Install just command runner | |
uses: extractions/setup-just@v2 | |
with: | |
just-version: "1.x" | |
- name: Setup Node.js | |
uses: ./.github/actions/setup-nodejs | |
- name: Check source code | |
run: just lint | |
- name: Compile source code | |
run: just compile | |
- name: Run unit tests | |
run: just test-unit-coverage | |
- name: Upload code coverage artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage | |
path: target/coverage/clover.xml | |
retention-days: 1 | |
if-no-files-found: error |