/
diev
/
node-saml-xml-crypto
Обзор
Документация
Войти
/
diev
/
node-saml-xml-crypto
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
.github/workflows/ci.yml
55 строк
1 KB
dependabot[bot]
Bump actions/setup-node from 3 to 4 (#413)
26 ноя 2023, 17:48
Не верифицирован
26 ноя 2023, 17:48
9602607
Код
Авторство
О чём код?
name: Test Status on: workflow_dispatch: push: branches: [master] pull_request: branches: [master] jobs: test: name: Test Code env: CI: true strategy: matrix: os: [ubuntu-latest] node-version: [16, 18, 20] experimental: [false] include: - os: ubuntu-latest node-version: latest experimental: true runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm test - run: npm update - run: npm ci - run: npm test - name: Codecov uses: codecov/codecov-action@v3.1.4 with: verbose: true lint: name: Lint Code env: CI: true runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: "lts/*" - run: | npm ci npm run lint