feat: the earliest date availible to be choosen on the date range on the analytics page should be 1 year from today gf-482 #1174
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: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dependencies: | |
name: Install Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Cache Dependencies | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: ci-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
ci- | |
- name: Install Dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm install | |
lint: | |
name: Code Linting | |
needs: dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v4 | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Restore Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: ci-${{ hashFiles('**/package-lock.json') }} | |
- name: Code Linting | |
run: | | |
npm run lint | |
build: | |
name: Code Building | |
needs: dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v4 | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Restore Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: ci-${{ hashFiles('**/package-lock.json') }} | |
- name: Code Building | |
run: | | |
npm run build |