Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

chore(deps): update dependency node to v20.17.0 #866

chore(deps): update dependency node to v20.17.0

chore(deps): update dependency node to v20.17.0 #866

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
tags: ['v*.*.*']
pull_request:
merge_group:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies 📦
run: yarn install --immutable
- name: Run build
run: yarn run build
docker:
uses: reims2/actions/.github/workflows/docker.yml@main
concurrency: docker-${{ github.ref }}
if: ${{ github.event_name != 'merge_group' }}
secrets: inherit # pass all secrets
deploy:
needs:
- docker
if: github.ref == 'refs/heads/main'
uses: reims2/actions/.github/workflows/deploy.yml@main
concurrency: deploy-${{ github.repository }}
secrets: inherit # pass all secrets
dev-deploy:
needs:
- docker
if: github.event_name == 'workflow_dispatch'
uses: reims2/actions/.github/workflows/dev-deploy.yml@main
concurrency: dev-deploy-${{ github.repository }}
secrets: inherit # pass all secrets