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