[Snyk] Security upgrade ag-grid-community from 28.2.1 to 31.3.4 #5839
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: Continuous integration | |
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: [master] | |
tags: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
node-version: [lts/*] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: npm install, lint and build | |
run: | | |
npm ci | |
npm run lint:no-fix | |
npm run build | |
env: | |
CI: ${{ true }} | |
- name: Docker meta | |
id: docker_meta | |
if: "contains(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master'" | |
uses: docker/[email protected] | |
with: | |
# list of Docker images to use as base name for tags | |
images: c2corg/c2c_ui | |
- name: Login to DockerHub | |
if: "contains(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master'" | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker images | |
if: "contains(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master'" | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
labels: ${{ steps.docker_meta.outputs.labels }} | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v8 | |
- name: Create clean branch name | |
id: clean_branch | |
run: echo ::set-output name=CLEAN_BRANCH::${BRANCH/\//-} | |
env: | |
BRANCH: ${{ steps.branch-name.outputs.current_branch }} | |
- name: Build for github pages | |
run: npm run build:github | |
env: | |
GITHUB_PAGES_BRANCH: ${{ steps.clean_branch.outputs.CLEAN_BRANCH }} | |
- name: Upload artifact for github pages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: github-pages | |
path: dist/* | |
github-pages: | |
needs: build | |
if: "!github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]'" | |
runs-on: ubuntu-latest | |
concurrency: github-pages | |
permissions: | |
contents: write | |
steps: | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v8 | |
- name: Create clean branch name | |
id: clean_branch | |
run: echo ::set-output name=CLEAN_BRANCH::${BRANCH/\//-} | |
env: | |
BRANCH: ${{ steps.branch-name.outputs.current_branch || steps.branch-name.outputs.tag }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
- name: Remove current branch files | |
run: rm -rf ${{ steps.clean_branch.outputs.CLEAN_BRANCH }} | |
- name: Retrieve github pages artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: github-pages | |
path: ${{ steps.clean_branch.outputs.CLEAN_BRANCH }} | |
- name: Commit files | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Action" | |
git add . | |
git commit -m "Deploy ${{ steps.branch-name.outputs.current_branch }} branch" | |
- name: Push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
create-release: | |
needs: build | |
if: "startsWith(github.ref, 'refs/tags/v')" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create or update release | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
push-i18n: | |
needs: build | |
if: "github.ref == 'refs/heads/master' && github.repository == 'c2corg/c2c_ui'" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Push translations to Transifex | |
run: | | |
echo "::add-mask::$TOKEN" | |
npm i | |
npm run messages:extract | |
curl --location --fail --request POST 'https://rest.api.transifex.com/resource_strings_async_uploads' --header 'Content-Type: multipart/form-data' --header "Authorization: Bearer $TOKEN" --form 'content=@"src/translations/c2corg_ui-client.pot"' --form 'resource="o:camptocamp-association:p:c2corg_ui:r:main"' | |
env: | |
TOKEN: ${{ secrets.TRANSIFEX_TOKEN }} |