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

Configuration: Updated workflow actions + .gitignore #4

Merged
merged 5 commits into from
Jul 28, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow runs install-test across different versions of node

name: Node.js Install Test
name: Node Tests

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will run tests using node and then publish an NPM package when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: NPM Publish
name: Release

on:
release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/storybook-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow runs Storybook CI tests against the Netlify build
# ? Reference: https://github.com/storybookjs/test-runner#running-in-ci
# ? Reference: https://github.com/marketplace/actions/wait-for-netlify-deployment
# ? Reference: https://github.com/actions-marketplace-validations/jlevy-io_wait-for-netlify-deploy-with-headers

name: Storybook Tests

Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:
run: npm install

- name: Wait for Netlify
uses: probablyup/wait-for-netlify-[email protected]
uses: jlevy-io/wait-for-netlify-[email protected]
id: waitForDeployment
with:
site_id: ${{ secrets.NETLIFY_SITE_ID }}
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
# Common
.DS_Store
node_modules/
npm-debug.log
*.log
*.local

# IDE
.idea/
Expand Down