mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
69 lines
1.3 KiB
YAML
69 lines
1.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-node:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version:
|
|
- 16
|
|
- 20
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Run tests
|
|
run: npm test
|
|
env:
|
|
CI: true
|
|
|
|
build-examples:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
example:
|
|
- custom-parsers
|
|
- typescript
|
|
- webpack-build
|
|
- webpack-build-server
|
|
- basic-crud-application/angular-client
|
|
- basic-crud-application/vue-client
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Use Node.js 20
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Build ${{ matrix.example }}
|
|
run: |
|
|
cd examples/${{ matrix.example }}
|
|
npm install
|
|
npm run build
|