feat: update dependencies and configurations #700
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@v4 | |
- name: ⚙️ Enable corepack | |
shell: bash | |
run: corepack enable | |
- name: ⚙️ Set up Node.js version ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: 📥 Install dependencies | |
uses: ./.github/actions/install | |
- name: 🧪 Run tests on package | |
run: yarn test | |
- name: 📝 Update coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: 📦 Build package | |
run: yarn build |