Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: Align Node version with development environment configuration (#53)

* ci: Align Node version with development environment configuration

This approach allows syncing continuously with development environment
configuration. It might need adjustments to specify exact runtime
versions that should be used as the project approaches V1 release.

* ci: Drop NPM packages publishing workflow trigger from unused branch

authored by

Paweł Wieczorek and committed by
GitHub
44062859 4fb2c5fb

+10 -7
+6 -4
.github/workflows/apply_pr_checks.yaml
··· 29 29 runs-on: ubuntu-latest 30 30 steps: 31 31 - uses: actions/checkout@v4 32 - - uses: actions/setup-node@v4 32 + - uses: actions/setup-node@v6 33 33 with: 34 - node-version: '24' 34 + node-version-file: '.nvmrc' 35 + check-latest: true 35 36 cache: 'npm' 36 37 - env: 37 38 NPM_TOKEN: ${{ secrets.NPM_TOKEN }} ··· 54 55 runs-on: ubuntu-latest 55 56 steps: 56 57 - uses: actions/checkout@v4 57 - - uses: actions/setup-node@v4 58 + - uses: actions/setup-node@v6 58 59 with: 59 - node-version: '24' 60 + node-version-file: '.nvmrc' 61 + check-latest: true 60 62 cache: 'npm' 61 63 62 64 - name: Install dependencies in root and client directory
+4 -3
.github/workflows/publish-packages.yaml
··· 2 2 3 3 on: 4 4 push: 5 - branches: [main, OSS] 5 + branches: [main] 6 6 paths: 7 7 - 'migrator/**' 8 8 - 'types/**' ··· 20 20 uses: actions/checkout@v4 21 21 22 22 - name: Setup Node.js 23 - uses: actions/setup-node@v4 23 + uses: actions/setup-node@v6 24 24 with: 25 - node-version: '24' 25 + node-version-file: '.nvmrc' 26 + check-latest: true 26 27 registry-url: 'https://registry.npmjs.org' 27 28 cache: 'npm' 28 29