diff --git a/.github/workflows/repo-checks.yaml b/.github/workflows/repo-checks.yaml new file mode 100644 index 0000000..138424b --- /dev/null +++ b/.github/workflows/repo-checks.yaml @@ -0,0 +1,54 @@ +# This workflow will do a clean installation of node dependencies, cache/ +# restore them, build the source code and run tests across different +# versions of node. +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs +name: repo-checks + +on: + push: + branches: ['main'] + pull_request: + branches: ['main'] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Get node version + id: node-version + shell: bash + run: echo "NODE_VERSION=$(cat ./.nvmrc)" >> $GITHUB_OUTPUT + + - name: Get pnpm version + id: pnpm-version + shell: bash + run: echo "PNPM_VERSION=$(cat ./.pnpmrc)" >> $GITHUB_OUTPUT + + - uses: actions/setup-node@v3 + id: node-install + with: + node-version: ${{ steps.node-version.outputs.NODE_VERSION }} + + - uses: pnpm/action-setup@v2 + id: pnpm-install + with: + version: ${{ steps.pnpm-version.outputs.PNPM_VERSION }} + run_install: false + + - name: Get pnpm store directory path + id: pnpm-store-path + shell: bash + run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT + + - name: Setup pnpm cache + uses: actions/cache@v3 + with: + path: ${{ steps.pnpm-store-path.outputs.STORE_PATH }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: ${{ runner.os }}-pnpm-store- + + - name: Run checks + run: pnpm check diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..02c8b48 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +18.18.0 diff --git a/.pnpmrc b/.pnpmrc new file mode 100644 index 0000000..781e90f --- /dev/null +++ b/.pnpmrc @@ -0,0 +1 @@ +8.7.6 diff --git a/cspell.config.yaml b/cspell.config.yaml index 32148fa..4b222f2 100644 --- a/cspell.config.yaml +++ b/cspell.config.yaml @@ -10,7 +10,9 @@ dictionaries: [] words: [] ignoreWords: - davidanson - - madr + - MADR + - nvmrc - Ourchitecture + - pnpmrc - wireit import: []