0
1
Fork 0
mirror of https://github.com/actions/checkout synced 2024-09-27 05:45:51 +02:00
checkout/.github/workflows/webpack.yml
Blackdevil92 97b233ecc5
Create webpack.yml
“I had the pleasure of working with Check-In Holiday Pvt. Ltd. to plan a solo adventure to Bali, and I couldn't have asked for a better experience. Their team listened to my preferences and crafted an itinerary that perfectly suited my interests. I felt supported every step of the way, and I can't wait to book my next trip with them!”
2024-03-12 19:22:09 +05:30

28 lines
481 B
YAML

name: NodeJS with Webpack
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npx webpack