tomos-ewe pushed a commit π #74
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: 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 |