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

Fix GitHub Actions run by updating Node.js version #70

Closed
wants to merge 20 commits into from
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
1697a0b
fix: Set up Node.js 16.x in GitHub Actions workflo
sweep-ai[bot] Dec 27, 2023
a9cd369
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Dec 28, 2023
cb0138a
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Dec 28, 2023
9cc5ae7
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Dec 29, 2023
0f87b53
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Dec 29, 2023
73fdac9
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 2, 2024
55b4250
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 2, 2024
1f89115
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 2, 2024
5e43836
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 2, 2024
4204865
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 2, 2024
eca6425
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
9e715ff
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
78559ef
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
cb4ff17
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
497b136
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
e3f93bd
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
2804ebb
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
0c74529
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
0c4075a
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
a41028a
Merge main into sweep/github-actions-run_1
sweep-ai[bot] Jan 3, 2024
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
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: npm install, build, and test
run: |
npm ci
npm run build
Loading