Date and time (in Product & UI) ready to publish - Mary Ellen Matthews #758
Workflow file for this run
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: 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 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
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 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
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 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: npm | |
- run: npm ci | |
- run: NODE_OPTIONS=--max_old_space_size=4096 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 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: npm | |
- run: npm ci | |
- run: npx nx affected --target=build --base=${{ github.event.pull_request.base.sha }} | |
- run: npx nx affected --target=build-scss --base=${{ github.event.pull_request.base.sha }} |