Skip to content

attempt: Get Vite to recognize env var #1567

attempt: Get Vite to recognize env var

attempt: Get Vite to recognize env var #1567

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run ESlint
run: |
git fetch origin master
npm run lint-js-changes
- name: Run Stylelint
run: |
git fetch origin master
npm run lint-css-changes