refactor: 💡 move tags fetch to server and only if needed (#31) #69
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: Unit Tests, Linting and Formatting | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
tests: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.16 | |
- name: Install dependencies | |
run: npm ci | |
- name: Linting | |
run: npm run lint | |
- name: Unit tests | |
run: npm run test:unit:ci | |
env: | |
PUBLIC_BUCKET_URL: https://storage.googleapis.com/enki-website |