mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-13 13:08:56 -04:00
Some checks failed
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
Opensearch Docker Image / build-image (push) Has been cancelled
BuildEnv Docker Image / build-image (push) Has been cancelled
BuildEnv Docker Image / build-image-fips (push) Has been cancelled
* chore: bump versions of actions * bump download and upload artifacts * revert dependabot to weekly
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
name: "Web app setup"
|
|
description: "Set up NPM and dependencies"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: ci/setup-node
|
|
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
|
|
with:
|
|
node-version-file: ".nvmrc"
|
|
- name: ci/cache-node-modules
|
|
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
|
id: cache-node-modules
|
|
with:
|
|
path: |
|
|
webapp/node_modules
|
|
webapp/channels/node_modules
|
|
webapp/platform/client/node_modules
|
|
webapp/platform/components/node_modules
|
|
webapp/platform/shared/node_modules
|
|
webapp/platform/types/node_modules
|
|
key: node-modules-${{ runner.os }}-${{ hashFiles('webapp/package-lock.json') }}
|
|
- name: ci/get-node-modules
|
|
if: steps.cache-node-modules.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
working-directory: webapp
|
|
run: |
|
|
make node_modules
|
|
- name: ci/build-platform-packages
|
|
# These are built automatically when depenedencies are installed, but they aren't cached properly, so we need to
|
|
# manually build them when the cache is hit. They aren't worth caching because they have too many dependencies.
|
|
if: steps.cache-node-modules.outputs.cache-hit == 'true'
|
|
shell: bash
|
|
working-directory: webapp
|
|
run: |
|
|
npm run postinstall
|