Skip to content

tomos-ewe pushed a commit πŸš€ #74

tomos-ewe pushed a commit πŸš€

tomos-ewe pushed a commit πŸš€ #74

Workflow file for this run

name: Continuous integration checks on public components
run-name: ${{ github.actor }} pushed a commit πŸš€
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: NPM ci
run: npm ci
- name: npm run test
run: npm run test
- name: Run prettier
run: npm run format:check
- name: Run eslint
run: npm run lint
- name: Lint types
run: npm run lint:types
- name: Run build
run: npm run build