Skip to content

Merge pull request #316 from Quramy/renovate/actions-checkout-digest #796

Merge pull request #316 from Quramy/renovate/actions-checkout-digest

Merge pull request #316 from Quramy/renovate/actions-checkout-digest #796

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: npm install, build, and test
run: |
npm ci
npm run bootstrap
npm run lint
npm run migrate:test
npm run test:ci
env:
CI: true
# - uses: codecov/codecov-action@v1
# with:
# name: jest
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./coverage/coverage-final.json