Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 5 additions & 87 deletions .github/workflows/branch-validations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,90 +12,8 @@ on:
- opened

jobs:
security-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24

- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci

- name: Check dependency vulnerabilities
run: npm audit --only=prod

validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24

- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci

- name: Check compilation errors
run: npm run validate

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24

- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci

- name: Check coding standard violations
run: npm run lint

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24

- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci

- name: Run tests
run: npm run test
validations:
uses: croct-tech/renovate-public-presets/.github/workflows/javascript-validations.yml@unify-workflows
with:
run-security: true
use-private-registry: false
63 changes: 13 additions & 50 deletions .github/workflows/deploy-published-releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,55 +5,18 @@ on:
types:
- published

env:
BASE_ENDPOINT: https://api.croct.io
MAX_QUERY_LENGTH: 500

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: npm ci

- name: Build package
run: |-
npm run build

- name: Prepare release
run: |-
cp LICENSE README.md build/
cd build
find . -type f -path '*/*\.js.map' -exec sed -i -e "s~../src~src~" {} +
sed -i -e "s~\"version\": \"0.0.0-dev\"~\"version\": \"${GITHUB_REF##*/}\"~" package.json
sed -i -e "s~<@version@>~${GITHUB_REF##*/}~" constants.*
sed -i -e "s~<@baseEndpointUrl@>~${BASE_ENDPOINT}~" constants.*
sed -i -e "s~parseInt('<@maxQueryLength@>', 10)~${MAX_QUERY_LENGTH}~" constants.*

- name: Publish pre-release to NPM
if: ${{ github.event.release.prerelease }}
run: |-
cd build
npm publish --access public --tag next

- name: Publish release to NPM
if: ${{ !github.event.release.prerelease }}
run: |-
cd build
npm publish --access public
uses: croct-tech/renovate-public-presets/.github/workflows/publish-npm-package.yml@unify-workflows
with:
publish-access: "public"
prepare-script: >-
cp LICENSE README.md build/ &&
cd build &&
find . -type f -path '*/*\.js.map' -exec sed -i -e "s~../src~src~" {} + &&
sed -i -e "s~\"version\": \"0.0.0-dev\"~\"version\": \"${GITHUB_REF##*/}\"~" package.json &&
sed -i -e "s~<@version@>~${GITHUB_REF##*/}~" constants.* &&
sed -i -e "s~<@baseEndpointUrl@>~https://api.croct.io~" constants.* &&
sed -i -e "s~parseInt('<@maxQueryLength@>', 10)~500~" constants.*
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading
Loading