Skip to content

Commit

Permalink
chore: temp
Browse files Browse the repository at this point in the history
  • Loading branch information
wessberg committed Aug 3, 2023
1 parent 4fd719d commit 58c11cb
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
36 changes: 34 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
node: [20]
node: [16.14.0, 17, 18, 19, 20]

steps:
- name: Checkout code
Expand All @@ -33,6 +33,38 @@ jobs:
- name: Install
run: pnpm install --no-frozen-lockfile

- name: Lint
run: pnpm run lint

- name: Test
run: pnpm test
run:
name: Run

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest]
node: [16.14.0, 17, 18, 19, 20]

steps:
- name: Checkout code
uses: actions/checkout@master

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

- name: Setup pnpm
run: npm install pnpm -g

- name: Install
run: pnpm install

- name: Lint
run: pnpm run lint

- name: Test
run: pnpm test

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
"prettier": "@wessberg/prettier-config",
"ava": {
"files": [
"test/**/allow-importing-ts-extensions.test.ts"
"test/**/*.test.ts"
],
"concurrency": 1,
"verbose": true,
Expand Down

0 comments on commit 58c11cb

Please sign in to comment.