Skip to content

fix(components): build fix for components not publishing to npm #363

fix(components): build fix for components not publishing to npm

fix(components): build fix for components not publishing to npm #363

Workflow file for this run

name: Covalent CI
on:
pull_request:
branches: [main, beta]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- run: npm ci
- run: npm run format:check -- --base=${{ github.event.pull_request.base.sha }}
- run: npx nx affected --target=scsslint --base=${{ github.event.pull_request.base.sha }}
- run: npx nx affected --target=lint --base=${{ github.event.pull_request.base.sha }}
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- run: npm ci
- run: npx nx affected --target=test --base=${{ github.event.pull_request.base.sha }}
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- run: npm ci
- run: npx nx affected --target=e2e --base=${{ github.event.pull_request.base.sha }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- run: npm ci
- run: npx nx affected --target=build --base=${{ github.event.pull_request.base.sha }}