Merge pull request #281 from fullstack-build/dependabot/npm_and_yarn/… #183
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, v4] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
env: | |
CI: true | |
COVERAGE: ${{ matrix.node-version == '18.x' && true || false }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
# Coverage. | |
- name: Run coverage | |
run: npm run coverage | |
- name: Report coverage | |
uses: codecov/codecov-action@v3 |