diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 77c2657..0809012 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -20,14 +20,18 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm ci - - run: npm run build --if-present - - run: npm run lint - - run: npm test - + - name: Install Dependencies + run: npm ci + - name: Lint + run: npm run lint + - name: Build + run: npm run build --if-present + - name: Test + run: npm test