chore(deps): bump the all group across 1 directory with 24 updates #619
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: Build and deploy | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
middyVersion: ["2.x", "3.x", "4.x", "5.x"] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint commit messages | |
uses: wagoid/commitlint-github-action@v5 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ^7.17.1 | |
- name: Install | |
run: pnpm install --frozen-lockfile=false | |
- name: Install middy version ${{ matrix.middyVersion }} | |
run: | | |
pnpm add @middy/core@${{ matrix.middyVersion }} | |
pnpm add @middy/http-error-handler@${{ matrix.middyVersion }} | |
pnpm add @middy/http-header-normalizer@${{ matrix.middyVersion }} | |
- name: Build | |
run: pnpm run build | |
- name: Build documentation | |
run: | | |
pnpm run docs | |
touch ./docs/.nojekyll | |
- name: Lint | |
run: pnpm run lint | |
- name: Run unit tests | |
run: pnpm run test:unit | |
- name: Upload code coverage to codecov | |
uses: codecov/codecov-action@v3 | |
- name: Run integration tests | |
run: pnpm run test:integration | |
publish: | |
needs: build | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ^7.17.1 | |
- name: Install | |
run: pnpm install --frozen-lockfile=false | |
- name: Build | |
run: pnpm run build | |
- name: Set git credentials | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
- name: Set npm credentials | |
run: echo //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN > ~/.npmrc | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
- name: Publish | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
semantic_version: 19 | |
branches: main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |