Skip to content

Bump xml2js and @nuxt/content #243

Bump xml2js and @nuxt/content

Bump xml2js and @nuxt/content #243

Workflow file for this run

name: BCREGISTRY UI CI
on:
pull_request:
types: [assigned, synchronize]
defaults:
run:
shell: bash
jobs:
setup-job:
runs-on: ubuntu-20.04
if: github.repository == 'bcgov/bcregistry'
steps:
- uses: actions/checkout@v3
- run: "true"
linting:
needs: setup-job
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.14.2]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Linting
run: |
npm run lint
testing-coverage:
needs: setup-job
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.14.2]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Test with Jest
id: test
run: |
npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
name: codecov-bcregistry
fail_ci_if_error: true
build-check:
needs: setup-job
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.14.2]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: build
id: build
run: |
npm run build