Merge pull request #67 from bigcommerce/CPX-1259 #259
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: Product Description Generator App CI (Lint, Build) | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: SKIP_ENV_VALIDATION=true npm run lint | |
- name: Build | |
run: SKIP_ENV_VALIDATION=true npm run build | |
- name: Test | |
run: SKIP_ENV_VALIDATION=true npm run test |