From 058cb7d3d91fa02602557e8e70e6dd924a4cd024 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Mon, 1 Mar 2021 11:04:26 +0800 Subject: [PATCH] install dependencies --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 629219c..1d435fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,17 @@ jobs: name: Test the action steps: - uses: actions/checkout@v2 + - name: Set Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - name: npm install + run: npm install + - name: Setup PDM uses: ./ with: python-version: 3.6 - # Use the output from the `hello` step + - name: Get the project info run: pdm info