Skip to content

Commit 98f5da6

Browse files
committed
chore: try nolyfill action
1 parent 0cf70f5 commit 98f5da6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/nolyfill.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Nolyfill CI
5+
6+
on:
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
node-version: [14.x, 16.x, 18.x]
16+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: fengkx/nolyfill-action@master
21+
with:
22+
project_path: "{{env.GITHUB_WORKSPACE}}"
23+
github_token: "{{secrets.GITHUB_TOKEN}}"
24+

0 commit comments

Comments
 (0)