From 71526086ebee6eb62ad909556432d845773cd822 Mon Sep 17 00:00:00 2001 From: "pinkforest(she/her)" <36498018+pinkforest@users.noreply.github.com> Date: Sun, 26 Mar 2023 05:09:09 +1100 Subject: [PATCH] Fix CI without token (#6) --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17a684d..e906b29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,12 +6,10 @@ jobs: main: runs-on: ubuntu-latest steps: - - name: Create npm configuration - run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc - env: - token: ${{ secrets.GITHUB_TOKEN }} - - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 - run: npm ci - run: npm run lint - run: npm run build