chore: Bump webpack from 5.88.2 to 5.95.0 #554
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: | |
pull_request: | |
branches: | |
- main | |
- next | |
- rc | |
- beta | |
- alpha | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- ".prettierrc" | |
- "**/*ignore" | |
push: | |
branches: | |
- main | |
- next | |
- rc | |
- beta | |
- alpha | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- ".prettierrc" | |
- "**/*ignore" | |
jobs: | |
test: | |
name: Test / OS ${{ matrix.os }} / Node ${{ matrix.node }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: ["18"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint files | |
run: npm run lint | |
- name: Validate build | |
run: npm run build | |
- name: Run tests | |
run: npm run test:coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |