update github actions #116
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 & Test" | |
on: | |
push: | |
branches: [ v1.x ] | |
paths-ignore: | |
- '**/*.md' | |
# - '.github' | |
pull_request: | |
branches: [ v1.x ] | |
paths-ignore: | |
- '**/*.md' | |
# - '.github' | |
env: | |
pnpm_version: 7 | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [16, 18] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: ${{ env.pnpm_version }} | |
- name: Install dependencies | |
run: pnpm install | |
- run: npx nx run nammatham:build | |
- run: npx nx run nammatham:typecheck | |
- run: npx nx run nammatham:test | |
- run: npx nx run nammatham:test:coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
name: ${{ matrix.os }}/${{ matrix.node-version }} |