Skip to content

Update package.json to allow angular 17 (#84) #284

Update package.json to allow angular 17 (#84)

Update package.json to allow angular 17 (#84) #284

Workflow file for this run

name: Check
on:
push:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Run lint script
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Run build script
run: yarn build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Run test script
run: yarn test
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependecies
run: yarn install --frozen-lockfile
- name: Start examples and run e2e tests
run: yarn e2e