Skip to content

Commit fe807ad

Browse files
authored
chore: update dependencies (postcss#268)
1 parent e6b4029 commit fe807ad

30 files changed

+6142
-9991
lines changed

.github/workflows/test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: test
2+
on:
3+
push:
4+
branches:
5+
- 'main'
6+
- 'master'
7+
pull_request:
8+
9+
defaults:
10+
run:
11+
shell: bash
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
os: [ubuntu-latest]
20+
node: [14, 16, 18]
21+
steps:
22+
- uses: actions/checkout@v3
23+
with:
24+
fetch-depth: 1
25+
- uses: actions/setup-node@v3
26+
with:
27+
node-version: ${{ matrix.node }}
28+
29+
- name: npm ci
30+
run: npm ci --ignore-scripts
31+
32+
- name: test
33+
run: npm test

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)