diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml new file mode 100644 index 000000000..5b54d8685 --- /dev/null +++ b/.github/workflows/push.yaml @@ -0,0 +1,25 @@ +name: CI + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '14' + + - name: Install dependencies + run: npm install + + - name: Run tests + run: npm test diff --git a/test_file.txt b/test_file.txt new file mode 100644 index 000000000..71aeb0f63 --- /dev/null +++ b/test_file.txt @@ -0,0 +1 @@ +// changes to test github action attempt 4