From 98f5da6a459d3e455c72788e85cdca1e6321cd42 Mon Sep 17 00:00:00 2001 From: fengkx Date: Tue, 16 Jul 2024 22:01:36 +0800 Subject: [PATCH] chore: try nolyfill action --- .github/workflows/nolyfill.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/nolyfill.yml diff --git a/.github/workflows/nolyfill.yml b/.github/workflows/nolyfill.yml new file mode 100644 index 00000000000..3fb134e60a7 --- /dev/null +++ b/.github/workflows/nolyfill.yml @@ -0,0 +1,24 @@ +# 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 +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Nolyfill CI + +on: + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + - uses: fengkx/nolyfill-action@master + with: + project_path: "{{env.GITHUB_WORKSPACE}}" + github_token: "{{secrets.GITHUB_TOKEN}}" +