Skip to content

Merge branch 'feat/picture-feature-with-wwa-script' into fix/delete-s… #475

Merge branch 'feat/picture-feature-with-wwa-script' into fix/delete-s…

Merge branch 'feat/picture-feature-with-wwa-script' into fix/delete-s… #475

Workflow file for this run

name: "WWA Wing Test"
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: restore node_modules
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
- name: "Install & Build"
run: |
npm i -g npm@8
npm install
npm run build
- name: "test"
run: |
npm test