Skip to content

Commit

Permalink
ci: drop node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Apr 24, 2023
1 parent 86d675d commit dbd12c2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: lts/*

- run: npx changelogithub
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: lts/*

- name: Setup
run: npm i -g @antfu/ni
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [14.19.0, 16.x, 18]
node: [16, 18]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright © 2022 三咲智子 (https://github.com/sxzz)
Copyright © 2022-PRESENT 三咲智子 (https://github.com/sxzz)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ Thanks to [esbuild-plugin-pipe](https://github.com/nativew/esbuild-plugin-pipe)

## License

[MIT](./LICENSE) License © 2022 [三咲智子](https://github.com/sxzz)
[MIT](./LICENSE) License © 2022-PRESENT [三咲智子](https://github.com/sxzz)
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['./src/index.ts'],
format: ['cjs', 'esm'],
target: 'node14',
target: 'node16.14',
clean: true,
dts: true,
})

0 comments on commit dbd12c2

Please sign in to comment.