Update dependencies #270
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
# syntax: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
name: NodeJS | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '.vscode/**' | |
- 'bundles/**' | |
- 'dev/**' | |
- 'readme/**' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.vscode/**' | |
- 'bundles/**' | |
- 'dev/**' | |
- 'readme/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 19.x, 20.x] | |
name: Node ${{ matrix.node-version }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Packages | |
run: npm run build | |
- name: Bundle Package | |
run: npm run bundle | |
- name: Run Tests | |
run: npm test | |
- name: Upload coverage to Codecov | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: codecov/codecov-action@v2 |