Skip to content

chore(deps-dev): bump semantic-release from 22.0.6 to 22.0.11 #25

chore(deps-dev): bump semantic-release from 22.0.6 to 22.0.11

chore(deps-dev): bump semantic-release from 22.0.6 to 22.0.11 #25

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '*'
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run lint
- run: npm run build --if-present
- run: npm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}