Skip to content

chore(deps): drop lodash.uniqwith dependency #657

chore(deps): drop lodash.uniqwith dependency

chore(deps): drop lodash.uniqwith dependency #657

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 22
registry-url: https://registry.npmjs.org
- name: install
run: npm ci
# Building for the first time to make dep libs available for update
- name: update prep
run: npm run build
- name: install chromium
run: npm run chromium
- name: update
run: npm run update
env:
PAG_USE_LOCAL_REV: 1
PAG_USE_NO_SANDBOX: 1
- name: format
run: npm run prettier:fix
# Actual build with updated fallback data
- name: build
run: npm run build
- name: publish
run: npx semantic-release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}