Skip to content

Merge pull request #16 from Baltazore/add-types-options #37

Merge pull request #16 from Baltazore/add-types-options

Merge pull request #16 from Baltazore/add-types-options #37

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
pull_request:
env:
NODE_VERSION: 16
PERCY_PARALLEL_NONCE: ${{ github.run_id }}-${{ github.run_number }}
PERCY_PARALLEL_TOTAL: 1
jobs:
lint:
name: Lint files
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Check out a copy of the repo
uses: actions/checkout@v3
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Lint
run: npm run lint
test-app:
name: Test app
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out a copy of the repo
uses: actions/checkout@v3
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Test
run: npx percy exec -- npm test
env:
PERCY_PARALLEL_NONCE: ${{ env.PERCY_PARALLEL_NONCE }}
PERCY_PARALLEL_TOTAL: ${{ env.PERCY_PARALLEL_TOTAL }}
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}