In this tutorial, I'm going to show you how to create a simple workflow that I use on my personal projects with React.
This workflow created on Gi...
For further actions, you may consider blocking this person and/or reporting abuse
Have you thought about adding cache for dependencies? For example, caching
node_modules
folderIt's a great suggestion, thank you. I'll read more about caching on GH Actions and update this post.
I have used cache in GitHub Actions in this project
Check it out if you want
github.com/NickSettler/bot.settler...
Hello, thanks for referencing this, I was exactly searching for this.
I cherry-picked and gave authorship to you here :)
github.com/niteshkumar2000/Real-Ti...
Why it is necessary to create a new secret token when the
GITHUB_TOKEN
seems to have all the mandatory scopes?I have tried and it won't work, but I would like to know if someone has an answer for that
Hi, a little question,
you say
why does you final yml contains a build step before a deploy step if deploy automatically run predeploy (build) ?
Thanks!
Just a note for those using
yarn
instead ofnpm
: you can replace the use of the wordnpm
in the examples above withyarn
and it should still work fine.Awesome article! 1 note to anyone wondering, you need to rebase any currently open PRs for the checks tab to start working.
I just read this after I wrote something similar just today. You are at my Part 2 which I still have to write. This is a great topic!
where does it set the .env? I have a problem if the .env doesn't read according to what I input.
If I might ask, why is there a predeploy build script in package.json when there's a dedicated build task in the workflow file?