From 230cc31eaccf1455ec5b474079573492e29aa228 Mon Sep 17 00:00:00 2001 From: polyprogrammist Date: Wed, 3 Jan 2024 22:52:57 -0500 Subject: [PATCH] tmp --- .github/workflows/jest.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/jest.yml b/.github/workflows/jest.yml index e5bb161..0d71cc8 100644 --- a/.github/workflows/jest.yml +++ b/.github/workflows/jest.yml @@ -5,14 +5,10 @@ jobs: Explore-GitHub-Actions: runs-on: ubuntu-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + node-version: '14' + - run: npm ci + - run: ts-node generate_all.ts + - run: npm run test