Bump webpack-cli from 5.1.4 to 6.0.1 #844
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
on: [push, pull_request] | |
name: CI | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
- name: Install Dependencies | |
run: make deps | |
- name: Lint | |
run: make lint | |
- name: Build | |
run: make release | |
- name: Test | |
run: go test ./... |