M-jerez Pull Request Checks π #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Checks | |
run-name: ${{ github.actor }} Pull Request Checks π | |
on: pull_request | |
jobs: | |
pull-request-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'package.json' | |
cache: npm | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
# Disabling cache temp | |
# - name: Cache node modules | |
# id: cache-npm | |
# uses: actions/cache@v3 | |
# env: | |
# cache-name: cache-node-modules | |
# with: | |
# # npm cache files are stored in `~/.npm` on Linux/macOS | |
# path: ~/.npm | |
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
# restore-keys: | | |
# ${{ runner.os }}-build-${{ env.cache-name }}- | |
# ${{ runner.os }}-build- | |
# ${{ runner.os }}- | |
# - if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} | |
# name: List the state of node modules | |
# continue-on-error: true | |
# run: npm list | |
- name: Install | |
run: npm ci | |
- name: Prettier check | |
run: npm run check-format-pre-commit | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test |