NEXT-33446 - add basic CI pipeline #5
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: Tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
workflow_dispatch: | |
jobs: | |
static-analysis: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
# - name: Retrieve the cached "node_modules" directory (if present) | |
# uses: actions/cache@v3 | |
# id: node-cache | |
# with: | |
# path: node_modules | |
# key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies (if the cached directory was not found) | |
# if: steps.node-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Check formatting | |
run: npm run format:check | |
- name: Perform typecheck | |
run: npm run lint:types | |
- name: Lint code | |
run: npm run lint:eslint | |
unit-tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
# - name: Retrieve the cached "node_modules" directory (if present) | |
# uses: actions/cache@v3 | |
# id: node-cache | |
# with: | |
# path: node_modules | |
# key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies (if the cached directory was not found) | |
# if: steps.node-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: unit | |
run: npm run test:unit |