This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
deps: Bump Sentry CLI to version to ^1.76.0
#313
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- master | |
- release/** | |
pull_request: | |
env: | |
NODE_OPTIONS: '--stack-trace-limit=10000' | |
jobs: | |
lint: | |
name: lint and codecov | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: yarn install | |
- run: yarn lint | |
- run: yarn codecov | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [8, 10, 12, 14, 16, 18] | |
test-command: ['test', 'test:integration'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: yarn install --ignore-engines # Webpack 5 does not support Node v8, but we still do for Webpack 4 | |
- run: yarn ${{ matrix.test-command }} |