Bump sass from 1.63.6 to 1.64.1 in /webpack #284
Workflow file for this run
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: Build all files to test building javascript | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-versions: ["16.x"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-versions }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-versions }} | |
- name: Install dependencies | |
run: | | |
cd webpack | |
npm install | |
- name: build webpack | |
run: | | |
cd webpack | |
webpack build |