chore: remove NEXT_PUBLIC_CL_ENDPOINT env variable #135
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: Test | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.17.0, 18.x, 20.x] | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- name: Node π§° | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Install π¦ | |
run: npm ci | |
- name: Lint π | |
run: | | |
npm run ts:check | |
npm run lint | |
- name: Test π + Coverage π | |
run: npm run coverage |