Skip to content

chore(deps): Bump webpack from 5.72.1 to 5.76.1 (#58) #7

chore(deps): Bump webpack from 5.72.1 to 5.76.1 (#58)

chore(deps): Bump webpack from 5.72.1 to 5.76.1 (#58) #7

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code, run tests, and run semantic release.
name: Node.js CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test
- name: Semantic Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release