feat(analytics): use Scarf.js to provide anonymized installation analytics #1939
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: SwaggerEditor@next build | |
on: | |
push: | |
branches: [ next ] | |
pull_request: | |
branches: [ next ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache npm cache files | |
id: cache-npm-cache-files | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: npm-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
- name: Cache Cypress binary | |
id: cache-cypress-binary | |
uses: actions/cache@v4 | |
with: | |
path: cypress/cache | |
key: cypress-binary-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint commit message | |
if: github.ref != 'refs/heads/next' && github.actor != 'dependabot[bot]' | |
run: git log -1 --pretty=format:"%s" | npx commitlint | |
- name: Lint code | |
run: npm run lint | |
- name: Unit tests | |
run: npm test | |
env: | |
CI: true | |
- name: Build App artifacts | |
run: npm run build:app | |
- name: E2E Tests | |
run: npm run cy:ci | |
- name: Upload build artifacts | |
if: github.ref == 'refs/heads/next' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: ./build |