mirror of
https://github.com/logos-messaging/docs.waku.org.git
synced 2026-03-26 21:13:38 +00:00
* chore: update license files to comply with Logos licensing requirements * fix: remove telegram link * ci: update ci job * fix: update github links
26 lines
427 B
YAML
26 lines
427 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
- "staging"
|
|
- "trying"
|
|
pull_request:
|
|
|
|
env:
|
|
NODE_JS: "24"
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: ${{ env.NODE_JS }}
|
|
cache: yarn
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn check:spell
|
|
- run: yarn build
|