diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e89697a..c5ad67a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test on: [workflow_call, push] jobs: - compile: + build: runs-on: ubuntu-latest steps: @@ -12,18 +12,8 @@ jobs: - name: Set up node uses: actions/setup-node@v4 - - name: Compile - run: yarn && yarn build + - name: Lint + run: npm run lint - test: - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - - name: Set up node - uses: actions/setup-node@v3 - - - name: Compile - run: yarn && yarn test + - name: Build + run: npm run build