Skip to content

CI - Github Actions #52

CI - Github Actions

CI - Github Actions #52

Workflow file for this run

name: UI - Install, Lint and Test
on:
pull_request:
paths:
- 'packages/ui/**'
- '!examples/**'
- '!packages/react/**'
- '!packages/sdk/**'
- '!storybook/**'
jobs:
ui:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: packages/ui/
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
# TODO: Remove right before merge.
with:
ref: 'feature/github-actions'
- name: Setup Node version
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version-file: '.nvmrc'
# TODO: NPM login instead of auth token?
- name: Authenticate with private NPM package
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Lint check
run: npm run lint
- name: Tests
run: npm run test