chore: remove unnecessary space #31
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: CI | |
on: [push] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- uses: actions/cache@v3 | |
id: cache-npm | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
- name: Install packages | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm install | |
check: | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
- name: lint | |
run: npm run lint | |
- name: format | |
run: npm run prettier:check | |
contract-test: | |
runs-on: ubuntu-latest | |
needs: [setup, check] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dfx | |
run: DFX_VERSION=0.14.1 sh -ci "$(curl -sSL https://internetcomputer.org/install.sh)" | |
- name: Clone DIP20 | |
run: git clone https://github.com/Psychedelic/DIP20.git ./src/DIP20 | |
- name: unit test | |
run: npm run test |