Add Registration Page #427
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
name: Lint & Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
env: | |
APP_TITLE: ${{ vars.APP_TITLE }} | |
APP_MAPBOX_ACCESS_TOKEN: ${{ vars.APP_MAPBOX_ACCESS_TOKEN }} | |
APP_GRAPHQL_CODEGEN_ENDPOINT: ${{ vars.APP_GRAPHQL_CODEGEN_ENDPOINT }} | |
APP_GRAPHQL_API_ENDPOINT: ${{ vars.APP_GRAPHQL_API_ENDPOINT }} | |
GITHUB_WORKFLOW: true | |
jobs: | |
# unimported: | |
# name: Find unimported files | |
# environment: 'test' | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# with: | |
# submodules: true | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# cache: 'yarn' | |
# - name: Install dependencies | |
# run: yarn install --frozen-lockfile | |
# - name: Run unimported | |
# run: yarn unimported | |
# fix use better tool, this is deprecated | |
lint-js: | |
name: Lint JS | |
environment: 'test' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint Javascript | |
run: yarn generate && yarn lint:js | |
css-lint: | |
name: Lint CSS | |
environment: 'test' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Css Lint | |
run: yarn lint:css | |
typecheck: | |
name: Typecheck | |
environment: 'test' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Typecheck | |
run: yarn generate && yarn typecheck | |
build: | |
name: Build | |
environment: 'test' | |
needs: [lint-js, css-lint, typecheck] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn generate && yarn build |