Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use latest node lts version #366

Merged
merged 2 commits into from Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/cd.yml
Expand Up @@ -47,6 +47,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
check-latest: true
node-version: lts/*
registry-url: https://registry.npmjs.org

Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
check-latest: true
node-version: lts/*
registry-url: https://npm.pkg.github.com
scope: "@fdawgs"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -55,11 +55,15 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
check-latest: true
node-version: lts/*

- name: Install
run: npm i --ignore-scripts

- name: Audit NPM package signatures and provenance attestations
run: npm audit signatures

- name: Run ESLint
run: npm run lint

Expand Down