-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Following the installation instructions does not work #1062
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
Comments
Hello @onlywei, Thank you for creating this issue and we will look into it :) |
Hello @onlywei 👋, thank you for reaching out.
2. Creating a .github/workflows directory in your repository: Here's a simplified example of how to use the name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
This workflow triggers on every push and pull request, sets up a Node.js environment with version 20, installs npm dependencies, and runs tests. |
Hi @onlywei 👋, |
Description:

I may be fundamentally mis-understanding how to use this action. See this screenshot:
I found this action by clicking on
Action version:
4.0.2
Platform:
Runner type:
Irrelevant
Tools version:
Irrelevant
Repro steps:
Expected behavior:
No red squigglies.
Actual behavior:
Immediate red squigglies.
The text was updated successfully, but these errors were encountered: