This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
fix(deps): update all dependencies #43
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: Nodejs CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'yarn.lock' | |
- 'packages/nodejs/**' | |
- '.github/workflows/nodejs-build-common.yml' | |
- '.github/workflows/nodejs-ci.yml' | |
push: | |
branches: [main] | |
paths: | |
- 'yarn.lock' | |
- 'packages/nodejs/**' | |
- '.github/workflows/nodejs-build-common.yml' | |
- '.github/workflows/nodejs-ci.yml' | |
jobs: | |
build: | |
name: nodejs-ci-build | |
uses: ./.github/workflows/nodejs-build-common.yml | |
lint: | |
name: nodejs-ci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Lint | |
run: yarn lint | |
working-directory: ./packages/nodejs | |
test: | |
name: nodejs-ci-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Test | |
run: yarn coverage | |
working-directory: ./packages/nodejs | |
- name: Report coverage | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 | |
with: | |
working-directory: ./packages/nodejs |