Skip to content

Commit

Permalink
Merge pull request #3507 from Mister-Hope/deps
Browse files Browse the repository at this point in the history
chore: bump deps
  • Loading branch information
hakimel authored Oct 29, 2023
2 parents b6a3ea8 + 73d3f34 commit 30eddd9
Show file tree
Hide file tree
Showing 5 changed files with 5,641 additions and 12,579 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
name: tests

on: [push]
on:
- push

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]
node-version:
- 18
- 20

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true
2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/test
/examples
.github
.gulpfile
.sass-cache
gulpfile.js
CONTRIBUTING.md
4 changes: 1 addition & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
const pkg = require('./package.json')
const path = require('path')
const glob = require('glob')
const yargs = require('yargs')
const colors = require('colors')
const through = require('through2');
const qunit = require('node-qunit-puppeteer')

const {rollup} = require('rollup')
const {terser} = require('rollup-plugin-terser')
const terser = require('@rollup/plugin-terser')
const babel = require('@rollup/plugin-babel').default
const commonjs = require('@rollup/plugin-commonjs')
const resolve = require('@rollup/plugin-node-resolve').default
Expand Down
Loading

0 comments on commit 30eddd9

Please sign in to comment.