mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-07 07:01:13 +02:00
* fix: bump release-please from 13.21.0 to 14.5.0 Bumps [release-please](https://github.com/googleapis/release-please) from 13.21.0 to 14.5.0. - [Release notes](https://github.com/googleapis/release-please/releases) - [Changelog](https://github.com/googleapis/release-please/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/release-please/compare/v13.21.0...v14.5.0) --- updated-dependencies: - dependency-name: release-please dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * run ci on node 14, 16 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jeff Ching <chingor@google.com>
36 lines
977 B
YAML
36 lines
977 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
name: ci
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node: [14, 16]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
- run: node --version
|
|
# The first installation step ensures that all of our production
|
|
# dependencies work on the given Node.js version, this helps us find
|
|
# dependencies that don't match our engines field:
|
|
- run: npm install --production --engine-strict --ignore-scripts --no-package-lock
|
|
# Clean up the production install, before installing dev/production:
|
|
- run: rm -rf node_modules
|
|
- run: npm install
|
|
- run: npm test
|
|
windows:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16
|
|
- run: npm install
|
|
- run: npm test
|