Merge branch 'main' into prod #54
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: Build | |
on: | |
push: | |
paths-ignore: | |
- "**/README.md" | |
pull_request: | |
paths-ignore: | |
- "**/README.md" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18.x ] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@master | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install dependencies | |
run: | | |
npm i pnpm -g | |
pnpm i | |
- name: lint | |
run: | | |
pnpm run lint:code | |
pnpm run lint:styles | |
pnpm run lint:types | |
- name: unit testing | |
run: | | |
pnpm run test:unit:ci | |
- name: unit test coverage report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: ./coverage | |
if-no-files-found: error | |
- name: build | |
run: | | |
pnpm run build | |
- name: build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build | |
path: ./build | |
if-no-files-found: error |