/
githubmirror
/
socket.io
Обзор
Документация
Войти
/
githubmirror
/
socket.io
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/build-examples.yml
46 строк
1017 B
Damien Arrachequesne
ci: enable caching of npm modules
02 апр 2026, 18:40
Не верифицирован
02 апр 2026, 18:40
4f7edb4
Код
Авторство
О чём код?
name: Build examples on: schedule: - cron: '0 0 * * 0' permissions: contents: read jobs: build-examples: runs-on: ubuntu-latest timeout-minutes: 10 strategy: fail-fast: false matrix: example: - custom-parsers - typescript-example/cjs - typescript-example/esm - typescript-client-example/cjs - typescript-client-example/esm - webpack-build - webpack-build-server - basic-crud-application/angular-client - basic-crud-application/vue-client - nextjs-pages-router - nextjs-app-router - nuxt-example steps: - name: Checkout repository uses: actions/checkout@v6 - name: Use Node.js 20 uses: actions/setup-node@v6 with: node-version: 20 cache: npm - name: Build ${{ matrix.example }} run: | cd examples/${{ matrix.example }} npm install npm run build