feat: update dependencies and configurations #693
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- develop | |
- feature/* | |
- release/* | |
- hotfix/* | |
- renovate/* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
integration: | |
name: Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.x, 20.x] | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v2-beta | |
- name: Set up Node.js version ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies using CI | |
run: npm ci | |
- name: Run tests on package | |
run: npm test | |
- name: Update coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build package | |
run: npm run build |